For the pilot wiki, our team is working with our fictitious operations manager, Otto OpsManager, to deploy the wiki application to our Docker Enterprise pilot platform. Since the load balancer box is upstream of the cluster, Otto asks a system admin to configure and run his HAProxy container.
The sample HAProxy config frontend section looks as follows:
global maxconn 2048 log /dev/log local0 debug log /dev/log local1 noticedefaults mode tcp option dontlognull timeout connect 5s timeout client 50s timeout server 50s timeout tunnel 1h timeout client-fin 50sfrontend ucp_443 mode tcp bind *:443 option tcplog log /dev/log local0 debug default_backend ucp_upstream_servers_443frontend dtr_4443 mode tcp bind *:4443 ...