1
0
mirror of https://github.com/django/django.git synced 2025-03-26 09:10:50 +00:00

Fixed #26055 -- Removed an orphaned phrase in docs/howto/deployment/wsgi/modwsgi.txt.

This commit is contained in:
Tim Graham 2016-01-08 09:35:34 -05:00
parent 59ef6559a3
commit db8f462494

View File

@ -160,10 +160,9 @@ If, however, you have no option but to serve media files on the same Apache
``VirtualHost`` as Django, you can set up Apache to serve some URLs as ``VirtualHost`` as Django, you can set up Apache to serve some URLs as
static media, and others using the mod_wsgi interface to Django. static media, and others using the mod_wsgi interface to Django.
This example sets up Django at the site root, but explicitly serves This example sets up Django at the site root, but serves ``robots.txt``,
``robots.txt``, ``favicon.ico``, any CSS file, and anything in the ``favicon.ico``, and anything in the ``/static/`` and ``/media/`` URL space as
``/static/`` and ``/media/`` URL space as a static file. All other URLs a static file. All other URLs will be served using mod_wsgi:
will be served using mod_wsgi:
.. code-block:: apache .. code-block:: apache