Add the following line to the bottom of /etc/haproxy/haproxy.cfg config file - ( replace <webserver_X_IP> with your server's IP address )
#---------------------------------------------------------------------
# Load balancer statistics ( stats )
#---------------------------------------------------------------------
listen stats
bind :9000
mode http
stats enable
stats uri /stats
#---------------------------------------------------------------------
# website frontend which proxys to the backends
#---------------------------------------------------------------------
frontend website-frontend
bind *:8080
default_backend website-backend
#---------------------------------------------------------------------
# website backend for serving up packages
#---------------------------------------------------------------------
backend website-backend
balance roundrobin
server website <webserver_1_IP>:80 check
server website <webserver_2_IP>:80 check