summaryrefslogtreecommitdiff
path: root/docs/howto/deployment/modpython.txt
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-10-24 09:26:09 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-10-24 09:26:09 +0000
commit03fcf19fd2043fe096d8ac63abb3fd7e533b639a (patch)
tree983ca674e9af7667bde19985c35a1377256218de /docs/howto/deployment/modpython.txt
parentc57fe6c3ece9f47778d7e00533b7d278e3e516f1 (diff)
Fixed #9434 -- Added a note to the mod_python docs regarding requiring
PythonInterpreter in different VirtualHost blocks that share the same server name. Thanks to Graham Dumpleton for the clarification. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9268 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/howto/deployment/modpython.txt')
-rw-r--r--docs/howto/deployment/modpython.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/howto/deployment/modpython.txt b/docs/howto/deployment/modpython.txt
index 7612b40020..8799b390fe 100644
--- a/docs/howto/deployment/modpython.txt
+++ b/docs/howto/deployment/modpython.txt
@@ -160,7 +160,8 @@ instance. Just use ``VirtualHost`` for that, like so::
SetEnv DJANGO_SETTINGS_MODULE mysite.other_settings
</VirtualHost>
-If you need to put two Django installations within the same ``VirtualHost``,
+If you need to put two Django installations within the same ``VirtualHost``
+(or in different ``VirtualHost`` blocks that share the same server name),
you'll need to take a special precaution to ensure mod_python's cache doesn't
mess things up. Use the ``PythonInterpreter`` directive to give different
``<Location>`` directives separate interpreters::