From 0b5f3297849c6061cf07b359e8b42768889e28cd Mon Sep 17 00:00:00 2001 From: Roman Arutyunyan Date: Mon, 17 Mar 2014 17:41:24 +0400 Subject: Added server-side support for PROXY protocol v1 (ticket #355). Client address specified in the PROXY protocol header is now saved in the $proxy_protocol_addr variable and can be used in the realip module. This is currently not implemented for mail. --- src/http/ngx_http.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/http/ngx_http.c') diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c index c3ac7266c..ce5adb737 100644 --- a/src/http/ngx_http.c +++ b/src/http/ngx_http.c @@ -1849,6 +1849,7 @@ ngx_http_add_addrs(ngx_conf_t *cf, ngx_http_port_t *hport, #if (NGX_HTTP_SPDY) addrs[i].conf.spdy = addr[i].opt.spdy; #endif + addrs[i].conf.proxy_protocol = addr[i].opt.proxy_protocol; if (addr[i].hash.buckets == NULL && (addr[i].wc_head == NULL -- cgit