From 02a5879cfede0065655c26c7d6a1eda7b6afbc3f Mon Sep 17 00:00:00 2001 From: Mariano Cano Date: Wed, 14 Apr 2021 19:35:31 -0700 Subject: [PATCH] Specify always a Proxy in all custom transports. Fixes #535 --- ca/client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ca/client.go b/ca/client.go index be55ba53..b9593162 100644 --- a/ca/client.go +++ b/ca/client.go @@ -57,6 +57,7 @@ func newInsecureClient() *uaClient { return &uaClient{ Client: &http.Client{ Transport: &http.Transport{ + Proxy: http.ProxyFromEnvironment, TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, }, },