control/controlclient: create tls client config with server hostname instead of serverURL.Host

Signed-off-by: Simon Kirillov <svkirillov3@gmail.com>
This commit is contained in:
Simon Kirillov 2021-04-10 09:09:22 +07:00 committed by Brad Fitzpatrick
parent 958782c737
commit a64b57e2fb

View File

@ -144,7 +144,7 @@ func NewDirect(opts Options) (*Direct, error) {
tr := http.DefaultTransport.(*http.Transport).Clone()
tr.Proxy = tshttpproxy.ProxyFromEnvironment
tshttpproxy.SetTransportGetProxyConnectHeader(tr)
tr.TLSClientConfig = tlsdial.Config(serverURL.Host, tr.TLSClientConfig)
tr.TLSClientConfig = tlsdial.Config(serverURL.Hostname(), tr.TLSClientConfig)
tr.DialContext = dnscache.Dialer(dialer.DialContext, dnsCache)
tr.DialTLSContext = dnscache.TLSDialer(dialer.DialContext, dnsCache, tr.TLSClientConfig)
tr.ForceAttemptHTTP2 = true