ngx_http_gzip_static_module should DECLINE request

This commit is contained in:
Igor Sysoev 2008-01-08 10:35:50 +00:00
parent 67913781fc
commit f53c2a00f8

View File

@ -82,7 +82,7 @@ ngx_http_gzip_static_handler(ngx_http_request_t *r)
ngx_http_gzip_static_conf_t *gzcf;
if (!(r->method & (NGX_HTTP_GET|NGX_HTTP_HEAD))) {
return NGX_HTTP_NOT_ALLOWED;
return NGX_DECLINED;
}
if (r->uri.data[r->uri.len - 1] == '/') {