summaryrefslogtreecommitdiff
path: root/docs/howto/deployment/wsgi
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-01-08 09:35:34 -0500
committerTim Graham <timograham@gmail.com>2016-01-08 09:36:58 -0500
commitdb8f462494d603eba922818479a87f5ddfe1a13b (patch)
tree044dd81d9ef8d2db5a3a17591ea4f3192b71d472 /docs/howto/deployment/wsgi
parent59ef6559a31c175c1f52668ef0ffe9b8d87aa5a5 (diff)
Fixed #26055 -- Removed an orphaned phrase in docs/howto/deployment/wsgi/modwsgi.txt.
Diffstat (limited to 'docs/howto/deployment/wsgi')
-rw-r--r--docs/howto/deployment/wsgi/modwsgi.txt7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/howto/deployment/wsgi/modwsgi.txt b/docs/howto/deployment/wsgi/modwsgi.txt
index d87f9f12d6..d42569e076 100644
--- a/docs/howto/deployment/wsgi/modwsgi.txt
+++ b/docs/howto/deployment/wsgi/modwsgi.txt
@@ -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
static media, and others using the mod_wsgi interface to Django.
-This example sets up Django at the site root, but explicitly serves
-``robots.txt``, ``favicon.ico``, any CSS file, and anything in the
-``/static/`` and ``/media/`` URL space as a static file. All other URLs
-will be served using mod_wsgi:
+This example sets up Django at the site root, but serves ``robots.txt``,
+``favicon.ico``, and anything in the ``/static/`` and ``/media/`` URL space as
+a static file. All other URLs will be served using mod_wsgi:
.. code-block:: apache