ПРОЕКТЫ 


  АРХИВ 


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]

proxy_*



контекст:

proxy_connect_timeout      60;
proxy_send_timeout         60;
proxy_read_timeout         60;

upstream  backend  {
   server comx64:80 weight=1;
   server comx64:88 weight=1;
   server comx64:8080 weight=1;
   server comx64:8888 weight=1;
   server w2003cpu4:80 weight=1;
  }

server {
listen       8001;
server_name  localhost;
access_log  logs/balancer.log  main;

location / {
 proxy_next_upstream http_500;
 proxy_next_upstream http_503;
 proxy_next_upstream http_404;
 proxy_next_upstream error timeout invalid_header;
 proxy_pass  http://backend/NLBTest1/;
}
}

proxy_connect_timeout, proxy_read_timeout, proxy_send_timeout - в данной ситуации будут относиться к каждому из 5-ти бэкендов (т.е. каждому достанется 60 сек) или ко всему upstream (каждому достанется по 60/5 сек)?

--
Regards,
Sergey Plekhov





 




Copyright © Lexa Software, 1996-2009.