In my haproxy.cfg file, I have the following config for the backend
backend app
balance roundrobin
server s1 127.0.0.1:8000 check
server s2 135.111.29.95:80 check
server b1 135.111.29.96 check backup
Yet, when I check the HAProxy stats, no health checks are being done on the backup server.
Am I just missing some line in the configuration?