Changeset 172
- Timestamp:
- 07/18/05 08:57:25 (3 years ago)
- Files:
-
- django/trunk/docs/tutorial02.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/tutorial02.txt
r144 r172 68 68 PythonHandler django.core.handler 69 69 SetEnv DJANGO_SETTINGS_MODULE myproject.settings.admin 70 PythonDebug On 70 71 </Location> 71 72 … … 75 76 the ``admin`` settings, not the ``main`` settings. That's because this is the 76 77 admin site, which has slightly different settings. 78 79 Also, if you've manually altered your ``PYTHONPATH`` to put your project on it, 80 you'll need to tell mod_python:: 81 82 PythonPath "['/path/to/project'] + sys.path" 77 83 78 84 You can also add directives such as ``PythonAutoReload Off`` for performance.
