changeset 2050:c0bafb136d7b

disable charset if there is "Content-Encoding" header
author Igor Sysoev <igor@sysoev.ru>
date Fri, 20 Jun 2008 14:33:36 +0000
parents 2a92804f4109
children 115e6f029fcc
files src/http/modules/ngx_http_charset_filter_module.c
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/modules/ngx_http_charset_filter_module.c
+++ b/src/http/modules/ngx_http_charset_filter_module.c
@@ -204,6 +204,12 @@ ngx_http_charset_header_filter(ngx_http_
 
     if (r == r->main) {
 
+        if (r->headers_out.content_encoding
+            && r->headers_out.content_encoding->value.len)
+        {
+            return ngx_http_next_header_filter(r);
+        }
+
         if (r->headers_out.content_type.len == 0) {
             return ngx_http_next_header_filter(r);
         }