Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Вопрос по nginx proxy + perl
Я так делаю:
set $fake $request_uri; # без этого в перле не будет доступна переменная
$request_uri
location ^~ /int_php/ {
internal;
proxy_pass http://127.0.0.1:8080/;
}
location / {
set $backend /int_php;
perl module::do;
}
в perl -
$r->internal_redirect($r->variable("backend").$r->variable("request_uri"));
P.S.:
На именованные location internal_redirect из не работает. Что печалит =(.
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,32458,231308#msg-231308
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|