ПРОЕКТЫ 


  АРХИВ 


Apache-Talk @lexa.ru 

Inet-Admins @info.east.ru 

Filmscanners @halftone.co.uk 

Security-alerts @yandex-team.ru 

nginx-ru @sysoev.ru 


  СТАТЬИ 


  ПЕРСОНАЛЬНОЕ 


  ПРОГРАММЫ 



ПИШИТЕ
ПИСЬМА












     АРХИВ :: nginx-ru
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: nginx-0.3.19



On Wed, 28 Dec 2005, Igor Sysoev wrote:

   *) Добавление: директивы path и alias поддерживают переменные.

С помощью переменных в path и директивы map можно делать виртуальный
статический хостинг:

http {

    map $http_host   $site  {
         hostnames;
         default        main;
         .example.com   example.com;
         .example.net   example.net;
    }

    server {
        listen   80  default;

        location / {
            root   /sites/$site;
        }
    }

и home pages примерно так:

http {

    map $user   $dir  {
         default      /site/nouser;
         john         /home/john/www;
         bill         /home/bill/www;
    }

    server {
        location ^~ /~ {
            set  $user   "";

            if ($uri ~ /~([^/]+) {
                set $user  $1;
            }

            root   $dir;
        }
    }


Игорь Сысоев
http://sysoev.ru




 




Copyright © Lexa Software, 1996-2009.