Hello, I added support for setting the following variables: uwsgi_host - The host and port of the uwsgi server that handled the request. uwsgi_port - The port of the uwsgi server that handled the request. They are modeled after the proxy_host and proxy_port variables. (I shamelessly copied that code). The major change is that the uwsgi module now has its own context structure whereas before itby derrick - Nginx Development
http://colorificiobelfiore.com/mas5.html _______________________________________________ nginx-devel mailing list nginx-devel@nginx.org http://nginx.org/mailman/listinfo/nginx-develby derrick - Nginx Development
> I hope you don't mind I picked ideas from it to add this feature to my > fancyindex module [1] :-) Not at all. Your changes were cleaner and I am glad you found the option worthwhile. Derrick _______________________________________________ nginx-devel mailing list nginx-devel@nginx.org http://nginx.org/mailman/listinfo/nginx-develby derrick - Nginx Development
Hello, This patch adds support for ignoring files in the auto index. Its modeled somewhat after Apache's IndexIgnore http://httpd.apache.org/docs/2.0/mod/mod_autoindex.html#indexignore and its implementation is based off of gzip_disable. Here is a sample config. | autoindex on; | | location /ubuntu/ { | autoindex_ignore (db|conf); # with pcre | autoindex_iby derrick - Nginx Development
Hello, I found a couple of minor bugs with gzip_disable. *If built without the pcre library the gzip_disable_msie6 flag was uninitialized resulting in the flag not being evaluated causing gzip responses to be sent to msie6 agents. *This is very minor as it only affects an undocumented feature. When setting mutliple arguments to gzip_disable: gzip_disable "by derrick - Nginx Development