comparison src/http/modules/ngx_http_static_module.c @ 435:e7dbea1ee115 NGINX_0_7_25

nginx 0.7.25 *) Change: in subrequest processing. *) Change: now POSTs without "Content-Length" header line are allowed. *) Bugfix: now the "limit_req" and "limit_conn" directives log a prohibition reason. *) Bugfix: in the "delete" parameter of the "geo" directive.
author Igor Sysoev <http://sysoev.ru>
date Mon, 08 Dec 2008 00:00:00 +0300
parents 79c5df00501e
children dac47e9ef0d5
comparison
equal deleted inserted replaced
434:f64d9e30046c 435:e7dbea1ee115
215 215
216 if (ngx_http_set_content_type(r) != NGX_OK) { 216 if (ngx_http_set_content_type(r) != NGX_OK) {
217 return NGX_HTTP_INTERNAL_SERVER_ERROR; 217 return NGX_HTTP_INTERNAL_SERVER_ERROR;
218 } 218 }
219 219
220 if (r != r->main && of.size == 0) { 220 if (of.size == 0) {
221 return ngx_http_send_header(r); 221 return ngx_http_send_header(r);
222 } 222 }
223 223
224 r->allow_ranges = 1; 224 r->allow_ranges = 1;
225 225