from Hacker News

Gunicorn 0.17.0 released

by raja on 12/25/12, 6:36 AM with 9 comments

New features: allows gunicorn to bind to multiple address add SSL support add syslog support add nworkers_changed hook add response arg for post_request hook parse command line with argparse (replace deprecated optparse)
  • by VMG on 12/25/12, 9:33 AM

    https://gunicorn-docs.readthedocs.org/en/0.17.0/index.html

    Gunicorn ‘Green Unicorn’ is a Python WSGI HTTP Server for UNIX. It’s a pre-fork worker model ported from Ruby’s Unicorn project. The Gunicorn server is broadly compatible with various web frameworks, simply implemented, light on server resources, and fairly speedy.

  • by akent on 12/25/12, 9:27 AM

    Changelog: 0.17.0 / 2012-12-25

        - allows gunicorn to bind to multiple address
        - add SSL support
        - add syslog support
        - add nworkers_changed hook
        - add response arg for post_request hook
        - parse command line with argparse (replace deprecated optparse)
        - fix PWD detection in arbiter
        - miscellenaeous PEP8 fixes
    
    SSL support is probably the big ticket item here but I imagine most people already have an SSL termination solution already.
  • by Spiritus on 12/25/12, 9:43 AM

    Anyone know how the Python 3 support is coming along?