aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Chris O'Haver <cohaver@infoblox.com> 2022-01-21 18:04:36 -0500
committerGravatar GitHub <noreply@github.com> 2022-01-21 15:04:36 -0800
commit1c6b68f3cbbaeab0f9d486d155912be260a3eada (patch)
treea72f6c67a9372054649a5c32f9785b0568ac3c1c
parentdc9e469e2b8b77f185d646845fdd2b192d347994 (diff)
downloadcoredns-1c6b68f3cbbaeab0f9d486d155912be260a3eada.tar.gz
coredns-1c6b68f3cbbaeab0f9d486d155912be260a3eada.tar.zst
coredns-1c6b68f3cbbaeab0f9d486d155912be260a3eada.zip
tls.PreferServerCipherSuites is ignored as of go 1.17 (#5108)
Signed-off-by: Chris O'Haver <cohaver@infoblox.com>
-rw-r--r--plugin/tls/tls.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/plugin/tls/tls.go b/plugin/tls/tls.go
index bb6504352..930c5e702 100644
--- a/plugin/tls/tls.go
+++ b/plugin/tls/tls.go
@@ -33,7 +33,6 @@ func setTLSDefaults(tls *ctls.Config) {
ctls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
ctls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
}
- tls.PreferServerCipherSuites = true
}
func parseTLS(c *caddy.Controller) error {