Try uwsgi -h and http://projects.unbit.it/uwsgi/
I think this wiki _is_ official documentation. -H is shortcut for (from uwsgi -h, no information on site) --home or --virtualenv or --venv or --pyhome [python plugin required] set the specified virtualenv for python apps --virtualenv /apps/env001 will use the virtualenv in /apps/env001 (This from http://projects.unbit.it/uwsgi/wiki/Doc) http enable the embedded http server/router/gateway/loadbalancer/proxy And from examples (http://projects.unbit.it/uwsgi/wiki/Example) Use the embedded HTTP server/router Oh yes, you do not need to have a real webserver: ./uwsgi --http 127.0.0.1:8080 --module myapp --callable app this will run myapp:app on http port 8080 -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
