summaryrefslogtreecommitdiff
path: root/docs/howto/deployment/wsgi/modwsgi.txt
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-02-24 18:26:29 +0100
committerClaude Paroz <claude@2xlibre.net>2014-02-24 18:29:46 +0100
commit3a5da7a11c009e46a50a8c4f432deb890151740a (patch)
tree57fe191b92a07237493b3decd229827a4ff8164d /docs/howto/deployment/wsgi/modwsgi.txt
parent39b099bdd26798566621f2c13957d587a3e3c387 (diff)
[1.6.x] Fixed #22116 -- Added precision about WSGIPythonPath separator
Thanks donjpacheco for the initial patch. Backport of 91f4a75a6b from master.
Diffstat (limited to 'docs/howto/deployment/wsgi/modwsgi.txt')
-rw-r--r--docs/howto/deployment/wsgi/modwsgi.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/howto/deployment/wsgi/modwsgi.txt b/docs/howto/deployment/wsgi/modwsgi.txt
index 4bf2fca482..a7bf410a71 100644
--- a/docs/howto/deployment/wsgi/modwsgi.txt
+++ b/docs/howto/deployment/wsgi/modwsgi.txt
@@ -74,7 +74,10 @@ Using a virtualenv
If you install your project's Python dependencies inside a `virtualenv`_,
you'll need to add the path to this virtualenv's ``site-packages`` directory to
your Python path as well. To do this, add an additional path to your
-`WSGIPythonPath` directive, with multiple paths separated by a colon::
+``WSGIPythonPath`` directive, with multiple paths separated by a colon (``:``)
+if using a UNIX-like system, or a semicolon (``;``) if using Windows. If any
+part of a directory path contains a space character, the complete argument
+string to ``WSGIPythonPath`` must be quoted::
WSGIPythonPath /path/to/mysite.com:/path/to/your/venv/lib/python2.X/site-packages