Changeset 5434
- Timestamp:
- 06/07/07 13:03:21 (1 year ago)
- Files:
-
- django/trunk/docs/modpython.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/modpython.txt
r5363 r5434 52 52 53 53 Also, if you've manually altered your ``PYTHONPATH`` to put your Django project 54 on it, you'll need to tell mod_python:: 55 56 PythonPath "['/path/to/project'] + sys.path" 54 on it, you'll need to tell mod_python: 55 56 .. parsed-literal:: 57 58 <Location "/mysite/"> 59 SetHandler python-program 60 PythonHandler django.core.handlers.modpython 61 SetEnv DJANGO_SETTINGS_MODULE mysite.settings 62 PythonDebug On 63 **PythonPath "['/path/to/project'] + sys.path"** 64 </Location> 57 65 58 66 .. caution::
