summaryrefslogtreecommitdiff
path: root/docs/howto/deployment/modwsgi.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/howto/deployment/modwsgi.txt')
-rw-r--r--docs/howto/deployment/modwsgi.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/deployment/modwsgi.txt b/docs/howto/deployment/modwsgi.txt
index fa1d39cc82..c35fba3183 100644
--- a/docs/howto/deployment/modwsgi.txt
+++ b/docs/howto/deployment/modwsgi.txt
@@ -31,7 +31,7 @@ and add::
WSGIScriptAlias / /path/to/mysite/apache/django.wsgi
-The first bit aboveis the url you want to be serving your application at (``/``
+The first bit above is the url you want to be serving your application at (``/``
indicates the root url), and the second is the location of a "WSGI file" -- see
below -- on your system, usually inside of your project. This tells Apache
to serve any request below the given URL using the WSGI application defined by that file.