File size: 517 Bytes
c40ff7e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | global
daemon
log stdout format raw local0 debug
defaults
log global
mode tcp
option tcplog
timeout connect 5s
timeout client 1m
timeout server 1m
frontend fe_scylla
bind 0.0.0.0:17542
default_backend be_scylla
backend be_scylla
balance roundrobin
option tcp-check
tcp-check connect port 9042
server scy1 10.0.10.11:9042 check fall 3 rise 2
server scy2 10.0.10.12:9042 check fall 3 rise 2
server scy3 10.0.10.13:9042 check fall 3 rise 2
|