Skip to content

Commit

Permalink
Fixed #3842 - clarified PythonPath directive in modpython.txt. Thanks…
Browse files Browse the repository at this point in the history
…, jon.i.austin@gmail.com.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5434 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
jacobian committed Jun 7, 2007
1 parent 43a06c9 commit 6434de9
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions docs/modpython.txt
Expand Up @@ -51,9 +51,17 @@ whereas ``<Location>`` points at places in the URL structure of a Web site.
``<Directory>`` would be meaningless here. ``<Directory>`` would be meaningless here.


Also, if you've manually altered your ``PYTHONPATH`` to put your Django project Also, if you've manually altered your ``PYTHONPATH`` to put your Django project
on it, you'll need to tell mod_python:: on it, you'll need to tell mod_python:


PythonPath "['/path/to/project'] + sys.path" .. parsed-literal::

<Location "/mysite/">
SetHandler python-program
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE mysite.settings
PythonDebug On
**PythonPath "['/path/to/project'] + sys.path"**
</Location>


.. caution:: .. caution::


Expand Down

0 comments on commit 6434de9

Please sign in to comment.