Skip to content

asenchi/gunicorn

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and nothing else.

This is a port of Unicorn (http://unicorn.bogomips.org/) in Python.

Installation

$ python setup.py install

Usage

$ gunicorn --help
Usage: gunicorn [OPTIONS] APP_MODULE

Options:
  --host=HOST        Host to listen on. [127.0.0.1]
  --port=PORT        Port to listen on. [8000]
  --workers=WORKERS  Number of workers to spawn. [1]
  -h, --help         show this help message and exit

Example with test app:

$ cd examples
$ gunicorn --workers=2 test:app

For django projects use the gunicorn_django command:

$ cd yourdjangoproject
$ gunicorn_django --workers=2

About

A place to do some work on gunicorn. Master is sync'd with upstream.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%