tiny-ssl-reverse-proxy icon indicating copy to clipboard operation
tiny-ssl-reverse-proxy copied to clipboard

option to ignore self singed cert on the backend side

Open psalty opened this issue 4 years ago • 0 comments

This is awesome. Thanks for the code sharing.

it would be nice to have an option to ignore self-signed cert on the backend side.

httpProxy.Transport = &ConnectionErrorHandler{http.DefaultTransport}

to something like

httpProxy.Transport = &ConnectionErrorHandler{&http.Transport{ TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, }}

psalty avatar Oct 02 '21 14:10 psalty