comparison src/http/modules/ngx_http_index_module.c @ 210:14050d2bec9b NGINX_0_3_52

nginx 0.3.52 *) Change: the ngx_http_index_module behavior for the "POST /" requests is reverted to the 0.3.40 version state: the module now does not return the 405 error. *) Bugfix: the worker process may got caught in an endless loop if the limit rate was used; bug appeared in 0.3.37. *) Bugfix: ngx_http_charset_module logged "unknown charset" alert, even if the recoding was not needed; bug appeared in 0.3.50. *) Bugfix: if a code response of the PUT request was 409, then a temporary file was not removed.
author Igor Sysoev <http://sysoev.ru>
date Mon, 03 Jul 2006 00:00:00 +0400
parents 003bd800ec2a
children fa32d59d9a15
comparison
equal deleted inserted replaced
209:10c6621dce28 210:14050d2bec9b
141 /* TODO: Win32 */ 141 /* TODO: Win32 */
142 if (r->zero_in_uri) { 142 if (r->zero_in_uri) {
143 return NGX_DECLINED; 143 return NGX_DECLINED;
144 } 144 }
145 145
146 if (!(r->method & (NGX_HTTP_GET|NGX_HTTP_HEAD))) {
147 return NGX_DECLINED;
148 }
149
150 log = r->connection->log; 146 log = r->connection->log;
151 147
152 /* 148 /*
153 * we use context because the handler supports an async file opening, 149 * we use context because the handler supports an async file opening,
154 * and may be called several times 150 * and may be called several times