Ticket #15955: doc-patch.diff

File doc-patch.diff, 818 bytes (added by exezaid, 13 years ago)

correction in the path to append the sys.path

  • howto/deployment/modwsgi.txt

     
    4747
    4848If your project is not on your ``PYTHONPATH`` by default you can add::
    4949
    50     path = '/path/to/mysite'
     50    path = '/path/to/parent/dir/of/site'
    5151    if path not in sys.path:
    5252        sys.path.append(path)
    5353
    5454just 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 project's location.
     55replace 'mysite.settings' with your correct settings file, and '/path/to/parent/dir/of/site'
     56with your own parent directory of the project's location.
    5757
    5858.. _serving-media-files:
    5959
Back to Top