hi everybody.
i have a problem in my way, i configure haproxy for load balance my https request through my clients, i add my certificate to frontend section but when i add https sites in backend section it doesn’t work.
these are my codes:
frontend firstbalance
bind *:443 ssl crt /etc/haproxy/pem.pem
bind *:80
option tcplog
mode http
default_backend webservers
backend webservers
balance roundrobin
mode http
server webserver1 x.x.x.x
server webserver2 x.x.x.x
i cant add an https site instead x.x.x.x servers.
anyown can help me?