виртуальные сервера

Roxis roxis at list.ru
Sat Dec 29 02:14:33 MSK 2007


On Saturday 29 December 2007, Alexander Dolgarev wrote:
> Нельзя ли это сделать спомощью модуля ngx_http_rewrite? Что-то вроде
> rewrite  ^(.*)/([^/]*)$  $1/$zone/$domain/$subdomain/$2  last;
>
> только как получить $zone, $domain и $subdomain из заголовка Host?

типа такого:

set $mypath /www/default;

if ($http_host ~ ^([a-z\d]+)\.([a-z\d]+)\.([a-z\d]+)$) {
    set $mypath /www/$3/$2/$1;
}

root $mypath;


More information about the nginx-ru mailing list