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
This commit is contained in:
parent
7fd887b2d7
commit
0498eb30cb
|
@ -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
|
``VirtualHost`` as Django, here's how you can turn off mod_python for a
|
||||||
particular part of the site::
|
particular part of the site::
|
||||||
|
|
||||||
<Location "/media/">
|
<Location "/media">
|
||||||
SetHandler None
|
SetHandler None
|
||||||
</Location>
|
</Location>
|
||||||
|
|
||||||
|
@ -177,7 +177,7 @@ the ``media`` subdirectory and any URL that ends with ``.jpg``, ``.gif`` or
|
||||||
SetEnv DJANGO_SETTINGS_MODULE mysite.settings
|
SetEnv DJANGO_SETTINGS_MODULE mysite.settings
|
||||||
</Location>
|
</Location>
|
||||||
|
|
||||||
<Location "media">
|
<Location "/media">
|
||||||
SetHandler None
|
SetHandler None
|
||||||
</Location>
|
</Location>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue