From 5afb58c91dbf35528f6d810cc2984d8b7e4c06a2 Mon Sep 17 00:00:00 2001 From: benoitc Date: Sat, 25 Feb 2012 15:23:12 +0100 Subject: [PATCH] update news for next release. --- doc/htdocs/index.html | 37 +++++++++++++++++++++++++++------- doc/site/news.rst | 46 ++++++++++++++++++++++++++++++++----------- 2 files changed, 64 insertions(+), 19 deletions(-) diff --git a/doc/htdocs/index.html b/doc/htdocs/index.html index 484493e01..dfa154dfe 100644 --- a/doc/htdocs/index.html +++ b/doc/htdocs/index.html @@ -38,7 +38,7 @@

Quick Start

(tutorial) $ mkdir myapp (tutorial) $ cd myapp/ (tutorial) $ vi myapp.py -(tutorial) $ cat myapp.py +(tutorial) $ cat myapp.py def app(environ, start_response): data = "Hello, World!\n" @@ -55,13 +55,13 @@

Quick Start

2010-06-05 23:27:07 [16802] [INFO] Worker spawned (pid: 16802) 2010-06-05 23:27:07 [16803] [INFO] Worker spawned (pid: 16803) 2010-06-05 23:27:07 [16804] [INFO] Worker spawned (pid: 16804) - +

About

Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX. It's - a pre-fork worker model ported from Ruby'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. @@ -78,13 +78,36 @@

Features

  • Compatible with Python 2.x >= 2.5
  • -
    +

    Version 0.13.4 / 2011-09-23

      -
    • fix util.closerange function used to prevent leaking fds - on python 2.5 (typo)
    • +
    • check if Request line is too large: You can now pass the + parameter --limit-request-line or set the + limit_request_line in your configuration file to set the max + size of the request line in bytes.
    • +
    • limit the number of headers fields and their size. Add + --limit-request-fieldsw and + limit-request-field-size settings
    • +
    • add 'p' variable to the log access format to log + pidfile
    • +
    • add '{HeaderName}o' variable to the logo access format to + log the response header HeaderName
    • +
    • request header is now logged with the variable + '{HeaderName}i' in the access log file
    • +
    • improve error logging
    • +
    • support logging.configFile
    • +
    • support django 1.4 in both + gunicorn_django & run_gunicorn command
    • +
    • improve reload in django run_gunicorn command (should just + work now)
    • +
    • allows people to set the X-Forwarded-For header key and + disable it by setting an empty string.
    • +
    • fix support of Tornado
    • +
    • many other + fixes.
    -
    +