haproxy.cfg 配置

# this config needs haproxy-1.1.28 or haproxy-1.2.1


global
log 127.0.0.1 local0
log 127.0.0.1 local1 notice
#log loghost local0 info
maxconn 4096
chroot /usr/share/haproxy
uid 99
gid 99
daemon
#debug
#quiet


defaults
log global
mode http
option httplog
option dontlognull
retries 3
option  redispatch
maxconn 2000
contimeout 5000
clitimeout 50000
srvtimeout 50000




#mips
listen  mips 0.0.0.0:9101
mode http
cookie SRV insert indirect nocache
balance  source
option httpclose
option forwardfor
#cookie sessionid prefix
server  app1_1 172.28.5.32:7001 cookie app1inst1 check inter 2000 rise 2 fall 5
server  app1_2 172.28.5.35:7001 cookie app1inst2 check inter 2000 rise 2 fall 5




#message
listen  message 0.0.0.0:8001
mode http
cookie SRV insert indirect nocache
balance  source
option httpclose
option forwardfor
server  app1_1 172.28.5.32:8001 cookie app1inst1 check inter 2000 rise 2 fall 5
server  app1_2 172.28.5.35:8001 cookie app1inst2 check inter 2000 rise 2 fall 5


#tcpmessage
listen  tcpmessage 0.0.0.0:8002
        mode tcp
        option tcplog
        option redispatch
        option abortonclose
        balance roundrobin
        server app1_1 172.28.5.32:8002  weight 6 check inter 2000 rise 2 fall 5
        server app1_2 172.28.5.35:8002  weight 6 check inter 2000 rise 2 fall 5
        
#UAPserver
listen  Adminserver 0.0.0.0:8081
mode http
cookie SRV insert indirect nocache
balance  roundrobin
option httpclose
option forwardfor
#cookie sessionid prefix
server  app1_1 172.28.5.31:7001 cookie app1inst1 check inter 2000 rise 2 fall 5
server  app1_2 172.28.5.36:8081 cookie app1inst2 check inter 2000 rise 2 fall 5       
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章