github.com/tilt-dev/tilt@v0.33.15-0.20240515162809-0a22ed45d8a0/internal/engine/testdata/haproxy.cfg (about)

     1  global
     2    daemon
     3    maxconn 4096
     4    nbproc 2
     5  
     6  defaults
     7    mode http
     8    balance roundrobin
     9    option http-server-close
    10    timeout connect     5s
    11    timeout client      30s
    12    timeout client-fin  30s
    13    timeout server      30s
    14    timeout tunnel      1h
    15    default-server inter 1s rise 2 fall 1 on-marked-down shutdown-sessions
    16    option forwardfor
    17  
    18  listen chat
    19    bind *:80
    20    default_backend nodes
    21  
    22  backend nodes
    23    option httpchk HEAD /health
    24    http-check expect status 200
    25    cookie serverid insert
    26    server yoko    server-yoko:3000    cookie yoko   check