Kaydet (Commit) 98c6ff3a authored tarafından Russell Keith-Magee's avatar Russell Keith-Magee

Fixed #14384 -- Updated mod_wsgi docs to match documented best practice. Thanks…

Fixed #14384 -- Updated mod_wsgi docs to match documented best practice. Thanks to monokrome for the report and wogan for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14016 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 08beb148
......@@ -47,7 +47,9 @@ mentioned in the second part of ``WSGIScriptAlias`` and add::
If your project is not on your ``PYTHONPATH`` by default you can add::
sys.path.append('/usr/local/django')
path = '/usr/local/django'
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'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment