Did you get it to work?

I did the following and it works:

Interpeter command:

/usr/bin/uwsgi -s /path_to/myproject/mysite.sock -M -z 4 -l 128 -C -p 1  
--pythonpath /path_to/ --pythonpath /path_to/myproject --env 
DJANGO_SETTINGS_MODULE=myproject.settings -w myproject.django_wsgi

django_wsgi:

import os
import django.core.handlers.wsgi

os.environ['DJANGO_SETTINGS_MODULE'] = 'myproject.settings'
application = django.core.handlers.wsgi.WSGIHandler()
applications = {'/':'application', }

Good Luck!


_______________________________________________
Cherokee mailing list
[email protected]
http://lists.octality.com/listinfo/cherokee

Reply via email to