summaryrefslogtreecommitdiff
path: root/docs/modpython.txt
diff options
context:
space:
mode:
authorJustin Bronn <jbronn@gmail.com>2007-09-20 13:02:11 +0000
committerJustin Bronn <jbronn@gmail.com>2007-09-20 13:02:11 +0000
commit7376474260a967e7ad88ee5bf554b4a28e3e7feb (patch)
tree735479f07bbe7cde8385b44ff76552afc9c2bffc /docs/modpython.txt
parent69452d623794bc9ef160c33c5e9b02180ca4848d (diff)
gis: Merged revisions 6021-6393 via svnmerge from [repos:django/trunk trunk].
git-svn-id: http://code.djangoproject.com/svn/django/branches/gis@6394 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/modpython.txt')
-rw-r--r--docs/modpython.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/modpython.txt b/docs/modpython.txt
index c90296bd9a..4a8c169a51 100644
--- a/docs/modpython.txt
+++ b/docs/modpython.txt
@@ -78,12 +78,12 @@ you have some applications under ``/usr/local/django-apps/`` (for example,
``DJANGO_SETTINGS_MODULE`` as in the above example. In this case, you would
need to write your ``PythonPath`` directive as::
- PythonPath "['/var/production/django-apps/', '/var/www'] + sys.path"
+ PythonPath "['/usr/local/django-apps/', '/var/www'] + sys.path"
With this path, ``import weblog`` and ``import mysite.settings`` will both
work. If you had ``import blogroll`` in your code somewhere and ``blogroll``
lived under the ``weblog/`` directory, you would *also* need to add
-``/var/production/django-apps/weblog/`` to your ``PythonPath``. Remember: the
+``/usr/local/django-apps/weblog/`` to your ``PythonPath``. Remember: the
**parent directories** of anything you import directly must be on the Python
path.
@@ -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