From 9c710c0569d1f82cd7b754446bd4bc8856f45867 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Tue, 1 May 2007 19:58:45 +0000 Subject: allow to "set" $http_, $sent_http_, and $upstream_http_ variables --- src/http/modules/ngx_http_rewrite_module.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src') 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; } -- cgit