mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-02-14 17:49:59 +00:00
19 lines
313 B
INI
19 lines
313 B
INI
global
|
|
daemon
|
|
maxconn 256
|
|
|
|
defaults
|
|
mode tcp
|
|
timeout connect 5000ms
|
|
timeout client 50000ms
|
|
timeout server 50000ms
|
|
|
|
frontend the-frontend
|
|
bind *:80
|
|
default_backend the-backend
|
|
|
|
backend the-backend
|
|
server google.com-80 google.com:80 maxconn 32 check
|
|
server ibm.fr-80 ibm.fr:80 maxconn 32 check
|
|
|