I have several backend web servers that have multiple vhosts and I want to use HAProxy in front of them. It doesn't appear that HAProxy is sending the hostname in the TLS connection to the backend servers.
Here is an example of the backend configuration:
backend app_cluster
balance roundrobin
server app1 host1.com:443 ssl no-sslv3
server app2 host2.com:443 ssl no-sslv3
Is it possible to configure HAProxy to work with backend web servers that require SNI?