Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Реврайт по имени сервер а
Извернулся так. Теперь для каждого запроса в переменную падает хост разбитый по
2м символам.
perl_modules perl/lib;
perl_set $splitted_host '
sub {
my $r = shift;
my $host = $r->header_in("Host");
my $charsSectionLength = 2;
($host) = ($host =~ m/^(?:www\.)?([^:]+)(?:\:\d+)?$/);
$host =~ s/(\.)/_/;
my $bits = join "/", ( $host =~ /.{1,$charsSectionLength}/gs );
return $bits;
}
';
......
server {
listen 80;
server_name _;
server_name_in_redirect off;
.......
location ~*
^.+.(jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js)$
{
root /long/path/to/static/content/root/$splitted_host/;
}
Posted at Nginx Forum: http://forum.nginx.org/read.php?21,64625,65524#msg-65524
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|