> It was not the case but, after a restart, somehow, i was able to delete the > Source again. I had to create a scgi Source prior to that. > > Robert, nice knowing uwsgi wizard is broken. I've been fighting with it for > a long time now. My current Interpreter is like: > > /usr/bin/uwsgi -s 127.0.0.1:51800 -t 10 -M -p 1 -C --pythonpath > /home/user/projects -w project.django_wsgi -H > /home/user/virtualenv/project/ >
I do not know your exact directory layout, but it looks like that the django project directory is not in your python path. add --pythonpath /home/user/projects/project If the problem is here i suggest you to chdir to /home/user/projects/project at server startup using --chdir /home/user/projects/project (instead of adding it to the pythonpath) this will mimic the embedded Django webserver behaviour I have to say that i am not a big fan of letting the webserver run the uWSGI stack, but i admit that is a beutiful commodity :) -- Roberto De Ioris http://unbit.it -- _______________________________________________ Cherokee mailing list [email protected] http://lists.octality.com/listinfo/cherokee
