Merge pull request #540 from smallstep/proxy-always

Always specify a Proxy in all custom transports.
pull/541/head v0.15.13
Mariano Cano 3 years ago committed by GitHub
commit 7688ca18ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -57,6 +57,7 @@ func newInsecureClient() *uaClient {
return &uaClient{
Client: &http.Client{
Transport: &http.Transport{
Proxy: http.ProxyFromEnvironment,
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
},
},

Loading…
Cancel
Save