From: Igor Sysoev Date: Tue, 28 Apr 2009 06:20:12 +0000 (+0000) Subject: "port_in_redirect off" did not work X-Git-Tag: release-0.7.54~22 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=bffd3196cfd7f262b659fb0b2cab98822d7f79c5;p=nginx.git "port_in_redirect off" did not work the bug had been appeared in r2530 and r2534 --- diff --git a/src/http/ngx_http_header_filter_module.c b/src/http/ngx_http_header_filter_module.c index 21ee3bbd2..332fceb8a 100644 --- a/src/http/ngx_http_header_filter_module.c +++ b/src/http/ngx_http_header_filter_module.c @@ -357,6 +357,9 @@ ngx_http_header_filter(ngx_http_request_t *r) else #endif port = (port == 80) ? 0 : port; + + } else { + port = 0; } if (port) {