diff --git a/docs/tutorial02.txt b/docs/tutorial02.txt index b64206cb65..c764bceedd 100644 --- a/docs/tutorial02.txt +++ b/docs/tutorial02.txt @@ -67,6 +67,7 @@ Now let's take the opportunity to hook Django into Apache/mod_python. Edit your SetHandler python-program PythonHandler django.core.handler SetEnv DJANGO_SETTINGS_MODULE myproject.settings.admin + PythonDebug On This tells Apache: "Use mod_python for any URL at or under '/admin/', using the @@ -75,6 +76,11 @@ so mod_python knows which project to use. Note that we're passing the path to the ``admin`` settings, not the ``main`` settings. That's because this is the admin site, which has slightly different settings. +Also, if you've manually altered your ``PYTHONPATH`` to put your project on it, +you'll need to tell mod_python:: + + PythonPath "['/path/to/project'] + sys.path" + You can also add directives such as ``PythonAutoReload Off`` for performance. See the `mod_python documentation`_ for a full list of options.