From a07c1c5aa6fe2111d4676ceecfead19710bacf02 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 2 Sep 2007 17:09:27 +0000 Subject: [PATCH] Fixed #5303 -- Fixed incorrect statement about PythonPath directive in docs/modpython.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@6034 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/modpython.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/modpython.txt b/docs/modpython.txt index c90296bd9a8..5a1a3f05060 100644 --- a/docs/modpython.txt +++ b/docs/modpython.txt @@ -262,7 +262,8 @@ else. This is done using the PythonImport_ directive to mod_python. You need to ensure that you have specified the ``PythonInterpreter`` directive to mod_python as described above__ (you need to do this even if you aren't serving multiple installations in this case). Then add the ``PythonImport`` -line inside the ``Location`` or ``VirtualHost`` section. For example:: +line in the main server configuration (i.e., outside the ``Location`` or +``VirtualHost`` sections). For example:: PythonInterpreter my_django PythonImport /path/to/my/project/file.py my_django