diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-04-09 01:06:09 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-04-09 01:06:09 +0000 |
| commit | 0498eb30cbd8acd0ecd7175393a713e6ceab681d (patch) | |
| tree | 63983bcf723a70aa66eeb503428ccc526fe8b6da /docs/modpython.txt | |
| parent | 7fd887b2d791f9f80f11db6b8bbb7b5fb73f53b2 (diff) | |
Fixed #3935 -- Fixed typo in docs/modpython.txt. Thanks, alexis@smirnov.ca
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4958 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/modpython.txt')
| -rw-r--r-- | docs/modpython.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/modpython.txt b/docs/modpython.txt index 863beadf2b..37909a09fd 100644 --- a/docs/modpython.txt +++ b/docs/modpython.txt @@ -160,7 +160,7 @@ If, however, you have no option but to serve media files on the same Apache ``VirtualHost`` as Django, here's how you can turn off mod_python for a particular part of the site:: - <Location "/media/"> + <Location "/media"> SetHandler None </Location> @@ -177,7 +177,7 @@ the ``media`` subdirectory and any URL that ends with ``.jpg``, ``.gif`` or SetEnv DJANGO_SETTINGS_MODULE mysite.settings </Location> - <Location "media"> + <Location "/media"> SetHandler None </Location> |
