ПРОЕКТЫ 


  АРХИВ 


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: load balancing between few auth_http records



Hello umask,

You wrote on Wednesday, July 11, 2007, 12:36:59 PM:

u> подскажите, пожалуйста, возможно ли использовать несколько записей
u> auth_http и если можно, то как распределить между ними нагрузку?

Можно сделать так:

http {
    log_format mail '[$time_local] $http_auth_user from $http_client_ip by 
$http_auth_protocol status: "$sent_http_auth_status
" backend: $sent_http_auth_server:$sent_http_auth_port attempt: 
$http_auth_login_attempt auth: $http_auth_method';
    access_log  /spool2/logs/nginx/access.log mail;

    upstream auth-nginx-cluster {
        server auth1.example.ru:8080;
        server auth2.example.ru:8080;
        server auth3.example.ru:8080;
        server auth4.example.ru:8080;
    }

    server {
        listen       127.0.0.1:7000;
        server_name  localhost;

        location /cgi-bin/ {
                proxy_pass http://auth-nginx-cluster/cgi-bin/;
                proxy_connect_timeout  5s;
                allow 127.0.0.1/32;
                deny  all;
        }

    }
}

mail {
    auth_http    127.0.0.1:7000/cgi-bin/nginx-auth.cgi;
    ...
}

-- 
 Anton Yuzhaninov.

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature



 




Copyright © Lexa Software, 1996-2009.