Here’s my setup. Both http and https connections are working, but on both backends, only the first server entry (server aab) is being forwarded to. The second one (server aaa) never gets hit. If I reverse the order the servers are listed, still only the first one gets hit:
defaults
log global
mode tcp
option dontlognull
timeout connect 5000
timeout client 50000
timeout server 50000
frontend http
bind :80
default_backend servers_http
frontend https
bind :443
default_backend servers_https
backend servers_http
mode tcp
balance roundrobin
server aab 44.195.20.48:80
server aaa 3.88.254.26:80
backend servers_https
mode tcp
balance roundrobin
server aab 44.195.20.48:443
server aaa 3.88.254.26:443
1 post - 1 participant