mirror of
https://github.com/nginx/nginx.git
synced 2024-12-19 05:33:52 -06:00
ngx_http_gzip_static_module should DECLINE request
This commit is contained in:
parent
67913781fc
commit
f53c2a00f8
@ -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] == '/') {
|
||||
|
Loading…
Reference in New Issue
Block a user