From 685f1c83fe161bd7acf91b21e184156acd1254ba Mon Sep 17 00:00:00 2001 From: Simon Marsh Date: Tue, 26 Jul 2022 13:35:36 +0100 Subject: [PATCH] dont set servername --- tls.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/tls.go b/tls.go index c7c2698..22b6ad2 100644 --- a/tls.go +++ b/tls.go @@ -116,9 +116,6 @@ func (req *TLSRequest) Renew(t *Token, config *tls.Config) (bool, error) { return false, err } - // update the tls.Config structure - config.ServerName = req.CommonName - config.RootCAs = x509.NewCertPool() config.RootCAs.AppendCertsFromPEM([]byte(kc.IssuingCA)) for _, ca := range kc.CAChain {