Абсолютный URI и proxy_pass

Roxis roxis at list.ru
Tue May 27 12:59:34 MSD 2008


Как заставить 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;
}


More information about the nginx-ru mailing list