# HG changeset patch # User Igor Sysoev # Date 1283435668 0 # Node ID 6cde134924331eaf3903fdae4676727abfa749bf # Parent a4755d4fd91ba716d4ce828dbf0f7fb073982f7a gzip_disable msie6 did not inherited if nginx was built without PCRE diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -3111,9 +3111,9 @@ ngx_http_core_create_loc_conf(ngx_conf_t clcf->gzip_http_version = NGX_CONF_UNSET_UINT; #if (NGX_PCRE) clcf->gzip_disable = NGX_CONF_UNSET_PTR; +#endif clcf->gzip_disable_msie6 = 3; #endif -#endif return clcf; }