From 569f95818b69792cd1cd36a98f0b54b8dd2c067e Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Wed, 31 Mar 2010 13:30:50 +0000 Subject: do not add a port in redirect if we listen on unix domain socket --- src/http/ngx_http_header_filter_module.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') diff --git a/src/http/ngx_http_header_filter_module.c b/src/http/ngx_http_header_filter_module.c index ef1791107..4f4023632 100644 --- a/src/http/ngx_http_header_filter_module.c +++ b/src/http/ngx_http_header_filter_module.c @@ -337,6 +337,11 @@ ngx_http_header_filter(ngx_http_request_t *r) sin6 = (struct sockaddr_in6 *) c->local_sockaddr; port = ntohs(sin6->sin6_port); break; +#endif +#if (NGX_HAVE_UNIX_DOMAIN) + case AF_UNIX: + port = 0; + break; #endif default: /* AF_INET */ sin = (struct sockaddr_in *) c->local_sockaddr; -- cgit