Running HAProxy with multiple SSL websites, and I would love to define a single backend (it's going to the same servers) but somehow specify the port to use on the backend in the front-end config, e.g.:
frontend front01_https
mode tcp
bind 1.2.3.4:443
default_backend https_cluster:1500
Trying mostly to tidy up my HAProxy config and make the stats more useful by combining the backends rather than having a backend for each front end or dropping down to listen
blocks.