Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Организация локейшенов
On Mon, May 28, 2012 at 10:58:00AM -0400, c350 wrote:
> Здравствуйте.
>
> Как более грамотно написать?
>
> Вариант 1):
> set $backend 'http://127.0.0.10:80';
> location ~* /location1 {
> rewrite ^ /backend_scripts/path/to/script1 break;
> proxy_pass $backend$uri$is_args$args;
> }
> ...
> location ~* /locationN {
> rewrite ^ /backend_scripts/path/to/scriptN break;
> proxy_pass $backend$uri$is_args$args;
> }
>
>
> Вариант 2):
> set $backend 'http://127.0.0.10:80';
> location ^~ /backend_scripts/ {
> proxy_pass $backend$uri$is_args$args;
> }
> location ~* /location1 {
> rewrite ^ /backend_scripts/path/to/script1 last;
> }
> ...
> location ~* /locationN {
> rewrite ^ /backend_scripts/path/to/scriptN last;
> }
>
> Подозреваю, что более правильный
> вариант1, но хотелось бы услышать
> мнение знающих людей.
location /location1 {
proxy_pass http://127.0.0.10:80/backend_scripts/path/to/script1;
}
location /location2 {
proxy_pass http://127.0.0.10:80/backend_scripts/path/to/script2;
}
--
Igor Sysoev
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|