@ttertery wrote:
Hello Experts,
I want to configure Haproxy to encapsulate incoming HTTP traffic into HTTPS having an HTTPS backend.
My config looks like this:frontend http-in-proxy
bind *:80
acl valid_url hdr_end(host) -i mydomain.com
use_backend servers-proxy if valid_url
default_backend forbiddenbackend forbidden
mode http
http-request deny deny_status 403backend servers-proxy
server server1-proxy 10.1.31.15:443 ssl verify noneThis works, but I’m not sure if haproxy validates the server certificates when making connection (when it acts as HTTPS Client).
Is there a way to validate the server certs here?
Thanks!
Posts: 1
Participants: 1