ПРОЕКТЫ 


  АРХИВ 


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: redirects log



спасибо, всё работает отлично.

может кому пригодится. выглядит примено так:

http
{
    ...

    geo $arg_IP $banned 
    {
        default 0;
        192.168.1.2 1;
        192.168.1.3 1;
        ...
    }

    server
    {
        listen 80;
        
        ...

        if ($banned) 
        {
            rewrite ^ /banned.html;
        }
        
        location = /banned.html
        {
            access_log /var/log/nginx/banned.log;
        }

        ...

    }
}


Posted at Nginx Forum: http://forum.nginx.org/read.php?21,7206,7259#msg-7259




 




Copyright © Lexa Software, 1996-2009.