sexevil 发表于 2019-1-1 11:35:54

Haproxy 线上配置文档

  Haproxy 某项目线上配置文档


[*]$ cat /usr/local/haproxy/haproxy.cfg
[*]global
[*]    maxconn 32000
[*]    pidfile /usr/local/haproxy/haproxy.pid
[*]      chroot /usr/local/haproxy
[*]      uid 504
[*]      gid 504
[*]      daemon
[*]      quiet
[*]      nbproc 1
[*]
[*]defaults
[*]      log   global
[*]      mode    http
[*]      option httplog
[*]      option dontlognull
[*]      retries 3
[*]      #option redispatch
[*]      maxconn 10000
[*]      contimeout      5000
[*]      clitimeout      50000
[*]      srvtimeout      50000
[*]
[*]listen tongji 0.0.0.0:80
[*]      mode http
[*]      option httplog
[*]      option dontlognull
[*]      cookie SERVERID
[*]      balance roundrobin
[*]      option httpchk HEAD /check.html HTTP/1.0
[*]      option forwardfor
[*]      stats uri /haproxy_stats_url
[*]      stats auth admin:password
[*]
[*]errorfile 502 /usr/local/haproxy/html/maintain.html
[*]errorfile 503 /usr/local/haproxy/html/maintain.html
[*]errorfile 504 /usr/local/haproxy/html/maintain.html
[*]
[*]server city01 10.10.100.61 cookie city01 check inter 2000 rise 2 fall 3
[*]server city02 10.10.100.62 cookie city02 check inter 2000 rise 2 fall 3

  详细解释,请参考这里。
  http://dngood.blog.运维网.com/446195/738634



页: [1]
查看完整版本: Haproxy 线上配置文档