Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: настройка nginx для прокс??ров ания н??скольких ??айтов
Hello valem,
Tuesday, September 29, 2009, 7:22:22 PM, you wrote:
> задача:
> есть frontend на nginx, есть backend на tomcat
> нужно органировать следующую конфигурацию:
sub1.domain.com ->> backend/uri1
sub2.domain.com ->> backend/uri2
> и т.д.
> вопрос, как сконфигурировать nginx.
> Posted at Nginx Forum:
> http://forum.nginx.org/read.php?21,9887,9887#msg-9887
server {
server_name ~(\d+)\.domain\.com$;
location / {
proxy_pass http://backend/uri$1;
}
}
как то так...
--
Best regards,
Denis mailto:denis@xxxxxxxxxx
|