Skip to main content

a WSGI server based on scgi_server

Project description

scgiwsgi
=============

A WSGI server based on scgi_server(http://python.ca/scgi/).


Example
------------

```python
from scgiwsgi import WSGIServer
from yourapp import application

WSGIServer(application).run(port=4000, max_children=5)
```



Installation
----------------------

```
pip install scgiwsgi
```


Nginx.conf Example
-------------------

```
location / {
include scgi_params;
scgi_pass localhost:4000;
}
```

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scgiwsgi-0.1.tar.gz (2.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page