changeset 1832:2547ef00c722

ngx_http_gzip_static_module should DECLINE request
author Igor Sysoev <igor@sysoev.ru>
date Tue, 08 Jan 2008 10:35:50 +0000
parents bf8666beb499
children 86464f8eddd6
files src/http/modules/ngx_http_gzip_static_module.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/modules/ngx_http_gzip_static_module.c
+++ b/src/http/modules/ngx_http_gzip_static_module.c
@@ -82,7 +82,7 @@ ngx_http_gzip_static_handler(ngx_http_re
     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] == '/') {