Skip to content

argomaintainer/scgiwsgi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

scgiwsgi

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

Example

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;
}

About

a WSGIServer on scgi_server

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%