Hi All 
i am trying to configure HAproxy for SSL Termination
the Backend is an Umbraco IIS website who redirect all traffic to HTTPS
when i Browsing through the HAproxy i receive " ERR_TOO_MANY_REDIRECTS "
there is a Loop redirecting to HTTPS
if the backend is a "Regular site " who does not have a built in HTTPS redirection
then it is working fine ( i can browse both HTTP and HTTPS )
how can i solve this ?
here is my backend config
backend backend_contoso.com
balance leastconn
option httpchk HEAD / HTTP/1.1\r\nHost:\ contoso.com
option forwardfor
option redispatch
option log-health-checks
default-server inter 5s fall 3 rise 5
http-check expect rstatus (2|3)[0-9][0-9]
http-request set-header X-Forwarded-Port %[dst_port]
cookie SERVERUSED indirect nocache insert
http-request redirect scheme https unless { ssl_fc }
server iis2 192.168.1.85:80 maxconn 10000 check cookie iis1
Thank you.
1 post - 1 participant