summaryrefslogtreecommitdiff
path: root/docs/howto/deployment/wsgi/apache-auth.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/howto/deployment/wsgi/apache-auth.txt')
-rw-r--r--docs/howto/deployment/wsgi/apache-auth.txt2
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 220645947d..fbde30f7c4 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 @@ check_user function:
.. code-block:: python
import os
- import sys
os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings'