dont set servername
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon Marsh 2022-07-26 13:35:36 +01:00
parent 6117bcd7bf
commit 685f1c83fe
Signed by: burble
GPG Key ID: 0FCCD13AE1CF7ED8

3
tls.go
View File

@ -116,9 +116,6 @@ func (req *TLSRequest) Renew(t *Token, config *tls.Config) (bool, error) {
return false, err return false, err
} }
// update the tls.Config structure
config.ServerName = req.CommonName
config.RootCAs = x509.NewCertPool() config.RootCAs = x509.NewCertPool()
config.RootCAs.AppendCertsFromPEM([]byte(kc.IssuingCA)) config.RootCAs.AppendCertsFromPEM([]byte(kc.IssuingCA))
for _, ca := range kc.CAChain { for _, ca := range kc.CAChain {