summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Graham <timograham@gmail.com>2010-12-29 13:59:15 +0000
committerTimo Graham <timograham@gmail.com>2010-12-29 13:59:15 +0000
commitca292f125b8084ef8061d52b1930dfb43904ff06 (patch)
tree189c82808d97d33a8cb4aa3ab3f38e9dbf15e08e
parentad4969e5e8986149351255ef09e388b8a627a801 (diff)
Fixed #14277 - Clarify path names in modwsgi docs; thanks neitpiet for the report, elbarto for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15098 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/howto/deployment/modwsgi.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/howto/deployment/modwsgi.txt b/docs/howto/deployment/modwsgi.txt
index 0db3c10cfb..cee0b14a38 100644
--- a/docs/howto/deployment/modwsgi.txt
+++ b/docs/howto/deployment/modwsgi.txt
@@ -47,12 +47,12 @@ mentioned in the second part of ``WSGIScriptAlias`` and add::
If your project is not on your ``PYTHONPATH`` by default you can add::
- path = '/usr/local/django'
+ path = '/path/to/mysite'
if path not in sys.path:
sys.path.append(path)
-just above the final ``import`` line to place your project on the path. Remember to
-replace 'mysite.settings' with your correct settings file, and '/usr/local/django'
+just below the ``import sys`` line to place your project on the path. Remember to
+replace 'mysite.settings' with your correct settings file, and '/path/to/mysite'
with your own project's location.
.. _serving-media-files: