Edgewall Software

Changes between Version 5 and Version 6 of Gunicorn


Ignore:
Timestamp:
Jul 5, 2012, 11:38:55 AM (12 years ago)
Author:
Felix Hummel <felix@…>
Comment:

typo

Legend:

Unmodified
Added
Removed
Modified
  • Gunicorn

    v5 v6  
    8686}}}
    8787
    88 Note: Nginx will redirect request to a unix socket. It can be a simple ip:port combination. It can be a multiple instance of gunicorn. Take a look in the nginx documentation :
     88Note: Nginx will redirect requests to a unix socket. It can be a simple ip:port combination. It can be a multiple instance of gunicorn. Take a look in the nginx documentation:
    8989http://wiki.nginx.org/HttpUpstreamModule
    9090
     
    9898}}}
    9999
    100 Note: It seems the wsgi entry point does not handle the Digest or Basic http authentication. To ensure the authentication middleware are passed, you'll have to hack a little bit the tracwsgi.py :
    101 
     100Note: It seems the WSGI entry point does not handle the Digest or Basic http authentication. To ensure the authentication middleware is passed, you have to hack a little bit the tracwsgi.py:
    102101
    103102{{{
     
    117116    wsgi_app = AuthenticationMiddleware(dispatch_request, auth)
    118117    return wsgi_app(environ, start_application)
    119 
    120 
    121118}}}