uWSGIΒΆ

This brief chapter covers how to configure a uWSGI server for Pyramid.

Pyramid is a Paste-compatible web application framework. As such, you can use the uWSGI --paste option to conveniently deploy your application.

For example, if you have a virtual environment in /opt/env containing a Pyramid application called wiki configured in /opt/env/wiki/development.ini:

uwsgi --paste config:/opt/env/wiki/development.ini --socket :3031 -H /opt/env

The example is modified from the original example for Turbogears.