# Config from Blog-article "How to Run HAProxy with Docker" defaults mode http timeout client 10s timeout connect 5s timeout server 10s timeout http-request 10s log global frontend stats bind *:8404 stats enable stats uri / stats refresh 10s frontend frontend bind :80 default_backend webservers backend webservers server s1 web1:80 check server s2 web2:80 check server s3 web3:80 check