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;
}
```
=============
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
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 details)
File details
Details for the file scgiwsgi-0.1.tar.gz
.
File metadata
- Download URL: scgiwsgi-0.1.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad2ce77758484ebc855e8c8897a2b17624efc55f1a7d0e167e8a86f026668540 |
|
MD5 | 6a416152f533e788908411a3b69b0c80 |
|
BLAKE2b-256 | 51ef449e7a3c16ac8d5f24eb099c3ff80e1a151a59266088079edf7ce1a8b5bb |