I'm pleased to annunce the 0.0.5 release for nginx mod_wsgi. nginx mod_wsgi is an implementation of the WSGI PEP (http://www.python.org/dev/peps/pep-0333/) for the Nginx web server.
Here is the changelog: - Fixed a severe bug, caused by a wrong size declared for the StateObject. The value used was the size of the LogObject, and this was not causing problems only because sizeof(LogObject) > sizeof(StateObject). - Replaced sys.stderr with a LogObject instance, so that WSGI applications can use it for logging. - Bug fix: sys.argv is not initialized for the main interpreter. PySys_SetArgv is used for the initialization (it will add the nginx executable path directory to sys.path). - Removed the wsgi_python_path directive. Use the PYTHON_PATH environment variable with the `env` directive, instead. - Added support for the `env` directive. WSGI applications will now use only environment variables explicitly declared with the `env` directive; in previous revisions they inherited variables from the initial environment. - Improved the conformance for SCRIPT_NAME and PATH_INFO variables. The Mercurial repository of nginx mod_wsgi can be found at: http://hg.mperillo.ath.cx/nginx/mod_wsgi/ Manlio Perillo _______________________________________________ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org/mailman/options/web-sig/archive%40mail-archive.com