From 1c6b68f3cbbaeab0f9d486d155912be260a3eada Mon Sep 17 00:00:00 2001 From: Chris O'Haver <cohaver@infoblox.com> Date: Fri, 21 Jan 2022 18:04:36 -0500 Subject: [PATCH] tls.PreferServerCipherSuites is ignored as of go 1.17 (#5108) Signed-off-by: Chris O'Haver <cohaver@infoblox.com> --- plugin/tls/tls.go | 1 - 1 file changed, 1 deletion(-) 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 {