summaryrefslogtreecommitdiff
path: root/docs/tutorial02.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-07-18 13:57:25 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-07-18 13:57:25 +0000
commitfe8ca41e6302f2588f3757fbb3fb50a62cf113ab (patch)
treee63d54032a2ac20adc905362bccb1ba01b539e4f /docs/tutorial02.txt
parent78206fd08c72a37a9ca1379e5c689edb59511efb (diff)
Fixed #57 -- Added some more helpful mod_python information to tutorial 2 -- thanks, Manuzhai!
git-svn-id: http://code.djangoproject.com/svn/django/trunk@172 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial02.txt')
-rw-r--r--docs/tutorial02.txt6
1 files changed, 6 insertions, 0 deletions
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
</Location>
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.