﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	uname	nginx_version
10	// in URI is truncated to / while proxing to real server	www.google.com/accounts/o8/id?id=AItOawlNRCBAb5OP6uQ8EYGb7faZ7GAj4pX3ff4	somebody	"Client send to nginx proxy with URI ""/confluence/rest/applinks/1.0/applicationlinkForm/url/http://127.0.0.1:8080/jira.json?_=1315386721160"".

But nginx send to real server with incorrect URI ""/confluence/rest/applinks/1.0/applicationlinkForm/url/http:/127.0.0.1:8080/jira.json?_=1315386721160"".

String ""http://127.0.0.1:8080/"" is truncated to ""http:/127.0.0.1:8080/"".

nginx.conf
location /confluence {
 proxy_set_header Host $host;
 proxy_pass http://127.0.0.1:8090/confluence;
 proxy_redirect http://127.0.0.1:8090/confluence/ /confluence/;
}
"	defect	closed	critical		nginx-module	1.1.x	invalid	proxy uri truncated		FreeBSD svn.localhost.localdomain 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011     root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64	"nginx: nginx version: nginx/1.1.1
nginx: TLS SNI support enabled
nginx: configure arguments: --prefix=/usr/local/etc/nginx --with-cc-opt='-I /usr/local/include' --with-ld-opt='-L /usr/local/lib' --conf-path=/usr/local/etc/nginx/nginx.conf --sbin-path=/usr/local/sbin/nginx --pid-path=/var/run/nginx.pid --error-log-path=/var/log/nginx-error.log --user=www --group=www --with-ipv6 --http-client-body-temp-path=/var/tmp/nginx/client_body_temp --http-fastcgi-temp-path=/var/tmp/nginx/fastcgi_temp --http-proxy-temp-path=/var/tmp/nginx/proxy_temp --http-scgi-temp-path=/var/tmp/nginx/scgi_temp --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi_temp --http-log-path=/var/log/nginx-access.log --with-http_realip_module --with-http_ssl_module --with-http_stub_status_module --with-pcre"
