Sono felice di annunciare il rilascio della versiong
0.0.5 di mod_wsgi
per nginx.
nginx mod_wsgi è una implementazione del PEP WSGI (
http://www.python.org/
dev/peps/pep-0333/) per il web server Nginx (
http://www.nginx.net)
Ecco il changelog (in inglese):
- 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.