ngx_http_gzip_static_module should DECLINE request

This commit is contained in:
Igor Sysoev 2008-01-08 10:35:50 +00:00
parent 39de6a4033
commit 8a712e4a15
1 changed files with 1 additions and 1 deletions

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] == '/') {