Haproxy 线上配置文档

Haproxy 某项目线上配置文档


  1. $ cat /usr/local/haproxy/haproxy.cfg 
  2. global 
  3.     maxconn 32000 
  4.     pidfile /usr/local/haproxy/haproxy.pid 
  5.         chroot /usr/local/haproxy 
  6.         uid 504 
  7.         gid 504 
  8.         daemon 
  9.         quiet 
  10.         nbproc 1 
  11.  
  12. defaults 
  13.         log     global 
  14.         mode    http 
  15.         option httplog 
  16.         option dontlognull 
  17.         retries 3 
  18.         #option redispatch 
  19.         maxconn 10000 
  20.         contimeout      5000 
  21.         clitimeout      50000 
  22.         srvtimeout      50000 
  23.  
  24. listen tongji 0.0.0.0:80 
  25.         mode http 
  26.         option httplog 
  27.         option dontlognull 
  28.         cookie SERVERID 
  29.         balance roundrobin 
  30.         option httpchk HEAD /check.html HTTP/1.0 
  31.         option forwardfor 
  32.         stats uri /haproxy_stats_url 
  33.         stats auth admin:password
  34.  
  35. errorfile 502 /usr/local/haproxy/html/maintain.html 
  36. errorfile 503 /usr/local/haproxy/html/maintain.html 
  37. errorfile 504 /usr/local/haproxy/html/maintain.html 
  38.  
  39. server city01 10.10.100.61 cookie city01 check inter 2000 rise 2 fall 3 
  40. server city02 10.10.100.62 cookie city02 check inter 2000 rise 2 fall 3 

详细解释,请参考这里。

http://dngood.blog.51cto.com/446195/738634


本文转自 dongnan 51CTO博客,原文链接:http://blog.51cto.com/dngood/819411

上一篇:02-SCCM2012-站点配置文档


下一篇:【技术贴】同一台机器Tomcat7多版本共存配置文档