Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Задвоение лидируещего слэ ша при проксировании.
Здравствуйте, nginx-ru.
Имеется вот такой локейшн:
location / {
set $vor 0;
if ($http_user_agent = 'http://Anonymouse.org/ (Unix)')
{
set $vor 1;
}
proxy_no_cache $vor;
proxy_cache_bypass $vor;
proxy_pass http://127.0.1.3:80/;
proxy_temp_path /optcache2/proxy-tmp;
proxy_cache optcache2;
proxy_ignore_headers "Cache-Control" "Expires";
}
Если юзер-агент "http://Anonymouse.org/ (Unix)", то не кэшируем
ничего. Иначе используем кэш.
Если сделать запрос с юзер-агентом "http://Anonymouse.org/ (Unix)" ,
то замена uri / на / глючит и к бэкенду идёт запрос с задвоенным
начальным / в uri. Если запрос с другим юзкр-агентом, то всё
нормально.
nginx: nginx version: nginx/1.0.4
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-debug --with-file-aio
--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_stub_status_module --with-pcre
--
С уважением,
Михаил mailto:postmaster@xxxxxxxxxxxxx
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|