summaryrefslogtreecommitdiffhomepage
path: root/src/http/modules/ngx_http_rewrite_module.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/http/modules/ngx_http_rewrite_module.c')
-rw-r--r--src/http/modules/ngx_http_rewrite_module.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_rewrite_module.c b/src/http/modules/ngx_http_rewrite_module.c
index 274991e4d..1b660c308 100644
--- a/src/http/modules/ngx_http_rewrite_module.c
+++ b/src/http/modules/ngx_http_rewrite_module.c
@@ -935,7 +935,11 @@ ngx_http_rewrite_set(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
return NGX_CONF_ERROR;
}
- if (v->get_handler == NULL) {
+ if (v->get_handler == NULL
+ && ngx_strncasecmp(value[1].data, "http_", 5) != 0
+ && ngx_strncasecmp(value[1].data, "sent_http_", 10) != 0
+ && ngx_strncasecmp(value[1].data, "upstream_http_", 14) != 0)
+ {
v->get_handler = ngx_http_rewrite_var;
v->data = index;
}