Перечисления location
Anton Yuzhaninov
citrin at citrin.ru
Mon Mar 24 12:17:45 MSK 2008
On 24.03.2008 10:57, Konstantin G. wrote:
> Можно ли как-то перечислять location с одинаковой конфигурацией? Т.е.
> вместо:
> --
> location /pic/ {
> root /var/www/html;
> }
> location /icons/ {
> root /var/www/html;
> }
> location = /robots.txt {
> root /var/www/html;
> }
> --
>
Можно использовать include
location /pic/ {
include conf-x1;
}
location /icons/ {
include conf-x1;
}
и т. п.
в файле conf-x1
написать
root /var/www/html;
--
WBR,
Anton Yuzhaninov
More information about the nginx-ru
mailing list