Skip to content

Commit

Permalink
feature: applied a patch to the nginx core to make the nginx variable…
Browse files Browse the repository at this point in the history
… $proxy_add_x_forwarded_for accessible on Lua land.

Signed-off-by: Yichun Zhang (agentzh) <[email protected]>
  • Loading branch information
spacewander authored and agentzh committed Jul 16, 2017
1 parent 68fdc67 commit adcff66
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions patches/nginx-1.11.2-proxy_host_port_vars.patch
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--- nginx-1.11.2/src/http/modules/ngx_http_proxy_module.c 2013-10-08 05:07:14.000000000 -0700
+++ nginx-1.11.2-patched/src/http/modules/ngx_http_proxy_module.c 2013-10-27 15:29:41.619378592 -0700
@@ -602,10 +602,10 @@ static ngx_keyval_t ngx_http_proxy_cach
--- nginx-1.11.2/src/http/modules/ngx_http_proxy_module.c 2017-07-16 14:02:51.000000000 +0800
+++ nginx-1.11.2-patched/src/http/modules/ngx_http_proxy_module.c 2017-07-16 14:02:51.000000000 +0800
@@ -793,13 +793,13 @@ static ngx_keyval_t ngx_http_proxy_cach
static ngx_http_variable_t ngx_http_proxy_vars[] = {

{ ngx_string("proxy_host"), NULL, ngx_http_proxy_host_variable, 0,
Expand All @@ -12,4 +12,8 @@
+ NGX_HTTP_VAR_CHANGEABLE|NGX_HTTP_VAR_NOCACHEABLE, 0 },

{ ngx_string("proxy_add_x_forwarded_for"), NULL,
ngx_http_proxy_add_x_forwarded_for_variable, 0, NGX_HTTP_VAR_NOHASH, 0 },
- ngx_http_proxy_add_x_forwarded_for_variable, 0, NGX_HTTP_VAR_NOHASH, 0 },
+ ngx_http_proxy_add_x_forwarded_for_variable, 0, 0, 0 },

#if 0
{ ngx_string("proxy_add_via"), NULL, NULL, 0, NGX_HTTP_VAR_NOHASH, 0 },

0 comments on commit adcff66

Please sign in to comment.