diff options
| author | Tim Graham <timograham@gmail.com> | 2013-12-25 06:06:25 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-12-25 06:06:25 -0500 |
| commit | e82e7ae1e8b7300017bb390462e5c2f7b48e2cde (patch) | |
| tree | 9aa8beaa1eeccf77de1cf210e77c7fdc76192096 | |
| parent | 5d826586578d09d183b8bd0b64571b7cfebe888b (diff) | |
Fixed #21663 -- Added missing WSGIPythonPath in mod_wsgi config.
Thanks carrie.hazelton at altamiracorp.com for the report.
| -rw-r--r-- | docs/howto/deployment/wsgi/apache-auth.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/deployment/wsgi/apache-auth.txt b/docs/howto/deployment/wsgi/apache-auth.txt index 80219ffdf4..98bafad530 100644 --- a/docs/howto/deployment/wsgi/apache-auth.txt +++ b/docs/howto/deployment/wsgi/apache-auth.txt @@ -38,6 +38,7 @@ only authenticated users to be able to view: .. code-block:: apache WSGIScriptAlias / /path/to/mysite.com/mysite/wsgi.py + WSGIPythonPath /path/to/mysite.com WSGIProcessGroup %{GLOBAL} WSGIApplicationGroup django @@ -76,7 +77,6 @@ function: .. code-block:: python import os - import sys os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings' |
