> There is so much information on the uWSGI site, I almost feel ashamed to > ask this question... > > I have a shared account on Dreamhost, and was able to install uWSGI with > the instructions from the uWSGI page. Werkzeug is showing correctly. > > I also downloaded web2py, and uncompressed it (on Dreamhost). > > What I am missing is: How do I get web2py running instead of werkzeug?
http://www.web2py.com/books/default/chapter/29/13/deployment-recipes?search=uwsgi uwsgi is a wsgi server, once you get the wsgi application from your project you just give that to uwsgi. Examples: --wsgi-file some-file.py # where some-file.py has a module level wsgi application object named `application` --module package.subpackage.module:application # similar but importing the file as a python module, thus the module package needs to be in python's lib path --mount .... etc -- damjan _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
