From: Igor Sysoev Date: Tue, 1 May 2007 19:58:45 +0000 (+0000) Subject: allow to "set" $http_, $sent_http_, and $upstream_http_ variables X-Git-Tag: release-0.5.20~12 X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/postgres_fdw.c?a=commitdiff_plain;h=9c710c0569d1f82cd7b754446bd4bc8856f45867;p=nginx.git allow to "set" $http_, $sent_http_, and $upstream_http_ variables --- 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; }