Ticket #22116: django.diff

File django.diff, 916 bytes (added by donjpacheco, 11 years ago)
  • docs/howto/deployment/wsgi/modwsgi.txt

    diff --git a/docs/howto/deployment/wsgi/modwsgi.txt b/docs/howto/deployment/wsgi/modwsgi.txt
    index a04d35a..d32f026 100644
    a b Using a virtualenv  
    7474If you install your project's Python dependencies inside a `virtualenv`_,
    7575you'll need to add the path to this virtualenv's ``site-packages`` directory to
    7676your Python path as well. To do this, add an additional path to your
    77 `WSGIPythonPath` directive, with multiple paths separated by a colon::
     77`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.
    7878
    7979    WSGIPythonPath /path/to/mysite.com:/path/to/your/venv/lib/python2.X/site-packages
    8080
Back to Top