/etc/haproxy/haproxy.cfgglobal
log /dev/log local0
defaults
mode http
timeout connect 5s
timeout client 30s
timeout server 30s
frontend http-in
bind *:80
default_backend web
backend web
balance roundrobin
server web1 127.0.0.1:8080 check
sudo systemctl reload haproxy