Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Абсолютный URI и prox y_pass
зачем такой изврат?
On 27.05.2008, at 12:59, Roxis wrote:
Как заставить nginx проксировать абсолютный URI (GET http://...)?
до 0.7.0 работал workaround:
location / {
set $http "http://";
rewrite / $http$host$uri;
}
location http {
proxy_pass http://127.0.0.1:8080;
}
proxy_pass http://$backend$request_uri;
так не работает?
|