Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 233 Bytes

haproxy.md

File metadata and controls

12 lines (10 loc) · 233 Bytes

Loadbalancer configuration

frontend incomingRequests
   bind *:8080
   default_backend backendServers

backend backendServers
   balance roundrobin
   server web1 <rhost>:<port> check
   server web2 <rhost>:<port> check