clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
+ if (r->headers_in.msie6 && clcf->gzip_disable_msie6) {
+ return NGX_DECLINED;
+ }
+
if (r->http_version < clcf->gzip_http_version) {
return NGX_DECLINED;
}
lcf->gzip_http_version = NGX_CONF_UNSET_UINT;
#if (NGX_PCRE)
lcf->gzip_disable = NGX_CONF_UNSET_PTR;
+ lcf->gzip_disable_msie6 = 3;
#endif
#endif
ngx_conf_merge_ptr_value(conf->gzip_disable, prev->gzip_disable, NULL);
#endif
+ if (conf->gzip_disable_msie6 == 3) {
+ conf->gzip_disable_msie6 =
+ (prev->gzip_disable_msie6 == 3) ? 0 : prev->gzip_disable_msie6;
+ }
+
#endif
return NGX_CONF_OK;
static char *
ngx_http_gzip_disable(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
{
-#if (NGX_PCRE)
ngx_http_core_loc_conf_t *clcf = conf;
+#if (NGX_PCRE)
+
ngx_str_t err, *value;
ngx_uint_t i;
ngx_regex_elt_t *re;
for (i = 1; i < cf->args->nelts; i++) {
+ if (ngx_strcmp(value[1].data, "msie6") == 0) {
+ clcf->gzip_disable_msie6 = 1;
+ continue;
+ }
+
re = ngx_array_push(clcf->gzip_disable);
if (re == NULL) {
return NGX_CONF_ERROR;
return NGX_CONF_OK;
#else
+ ngx_str_t *value;
+
+ value = cf->args->elts;
+
+ if (cf->args->nelts == 2 && ngx_strcmp(value[1].data, "msie6") == 0) {
+ clcf->gzip_disable_msie6 = 1;
+ return NGX_CONF_OK;
+ }
+
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
- "\"gzip_disable\" requires PCRE library");
+ "without PCRE library \"gzip_disable\" supports "
+ "builtin \"msie6\" mask only");
return NGX_CONF_ERROR;
#endif
ngx_http_process_user_agent(ngx_http_request_t *r, ngx_table_elt_t *h,
ngx_uint_t offset)
{
- u_char *ua, *user_agent;
+ u_char *user_agent, *msie;
if (r->headers_in.user_agent) {
return NGX_OK;
user_agent = h->value.data;
- ua = ngx_strstrn(user_agent, "MSIE", 4 - 1);
+ msie = ngx_strstrn(user_agent, "MSIE ", 5 - 1);
- if (ua && ua + 8 < user_agent + h->value.len) {
+ if (msie && msie + 7 < user_agent + h->value.len) {
r->headers_in.msie = 1;
- if (ua[4] == ' ' && ua[5] == '4' && ua[6] == '.') {
- r->headers_in.msie4 = 1;
+ if (msie[6] == '.') {
+
+ switch (msie[5]) {
+ case '4':
+ r->headers_in.msie4 = 1;
+ /* fall through */
+ case '5':
+ case '6':
+ r->headers_in.msie6 = 1;
+ }
}
#if 0
r->headers_in.opera = 1;
r->headers_in.msie = 0;
r->headers_in.msie4 = 0;
+ r->headers_in.msie6 = 0;
}
if (!r->headers_in.msie && !r->headers_in.opera) {