File size: 373 Bytes
253fe6a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
global
log stdout format raw local0
defaults
log global
mode http
option httplog
timeout connect 5000ms
timeout client 50000ms
timeout server 50000ms
frontend http_front
bind *:80
default_backend model_backend
backend model_backend
balance roundrobin
server model1 model1:80 check
server model2 model2:80 check
|