﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
15955	WSGI howto has an error	Jeff Blaine	nobody	"http://docs.djangoproject.com/en/1.3/howto/deployment/modwsgi/

The following instructions are not correct, from what I can tell.

{{{
import os
import sys

os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings'

import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
}}}


{{{
path = '/path/to/mysite'
if path not in sys.path:
    sys.path.append(path)

}}}

This last block contains the error.  In order to find 'mysite.settings', path should be set to '/path/to/parent/dir/of/site'."	Bug	closed	Documentation	1.3	Normal	fixed			Accepted	0	0	0	0	0	0
