changeset 5546:f385349d584b

Proxy: fixed upstream search by proxy_pass with variables. If "proxy_pass" is specified with variables, the resulting hostname is looked up in the list of upstreams defined in configuration. The search was case-sensitive, as opposed to the case of "proxy_pass" specified without variables.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 30 Jan 2014 18:57:11 +0400
parents 01e2a5bcdd8f
children 2e40188f83ef
files src/http/ngx_http_upstream.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/ngx_http_upstream.c
+++ b/src/http/ngx_http_upstream.c
@@ -612,7 +612,7 @@ ngx_http_upstream_init_request(ngx_http_
             if (uscf->host.len == host->len
                 && ((uscf->port == 0 && u->resolved->no_port)
                      || uscf->port == u->resolved->port)
-                && ngx_memcmp(uscf->host.data, host->data, host->len) == 0)
+                && ngx_strncasecmp(uscf->host.data, host->data, host->len) == 0)
             {
                 goto found;
             }