Parcourir la source

Fixed #21663 -- Added missing WSGIPythonPath in mod_wsgi config.

Thanks carrie.hazelton at altamiracorp.com for the report.
Tim Graham il y a 11 ans
Parent
commit
e82e7ae1e8
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      docs/howto/deployment/wsgi/apache-auth.txt

+ 1 - 1
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'