Benoit Chesneau 4f5548e8bd handle all signals like unicorn or nginx :
http://unicorn.bogomips.org/SIGNALS.html

TODO: implementing daemonized mode & config file
2010-01-11 00:38:25 +01:00
2009-12-27 15:02:07 +01:00
2009-12-21 19:47:07 +01:00
2009-12-27 14:15:52 +01:00

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
    
    



Description
gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.
Readme MIT 5.5 MiB
Languages
Python 99.9%