Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Помогите с переводом ру ла в нгинкс (из апаче)
On 12/07/10 13:11, Anton Yuzhaninov wrote:
location /file {
rewrite ^/file(.*)$ /file.php$1;
}
location = /file.php {
proxy_pass http://dyn.domain.com:8080;
}
Так работать не будет.
Если переводить более дословно, то
location /file {
rewrite ^/file(.*)$ /file.php$1;
}
location /file.php {
proxy_pass http://dyn.domain.com:8080;
}
Но правила выглядят несколько странно, лучше приведите несколько примеров URL.
--
Anton Yuzhaninov
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|