Ticket #15955: doc-patch.diff
File doc-patch.diff, 818 bytes (added by , 13 years ago) |
---|
-
howto/deployment/modwsgi.txt
47 47 48 48 If your project is not on your ``PYTHONPATH`` by default you can add:: 49 49 50 path = '/path/to/ mysite'50 path = '/path/to/parent/dir/of/site' 51 51 if path not in sys.path: 52 52 sys.path.append(path) 53 53 54 54 just below the ``import sys`` line to place your project on the path. Remember to 55 replace 'mysite.settings' with your correct settings file, and '/path/to/ mysite'56 with your own p roject's location.55 replace 'mysite.settings' with your correct settings file, and '/path/to/parent/dir/of/site' 56 with your own parent directory of the project's location. 57 57 58 58 .. _serving-media-files: 59 59