Saturday, August 28, 2010

Re: mod_wsgi setup issue

here is my config:

***
[mako@web101 www]$ cat myproject.wsgi
import os
import sys

sys.path = ['/home/mako/webapps/www'] + sys.path
from django.core.handlers.wsgi import WSGIHandler

os.environ['DJANGO_SETTINGS_MODULE'] = 'timssite.settings'
application = WSGIHandler()
***

that's right outside the actual project folder, timssite.

hope this shakes something loose.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

No comments:

Post a Comment