diff --git a/tlsutil/tlsutil.go b/tlsutil/tlsutil.go index 34c6cc2..05c9177 100644 --- a/tlsutil/tlsutil.go +++ b/tlsutil/tlsutil.go @@ -65,7 +65,7 @@ func WithCertificates(certs []tls.Certificate) Option { // // Use one of the available Options to modify the default config. func NewConfig(opts ...Option) *tls.Config { - cfg := tls.Config{PreferServerCipherSuites: true} + cfg := tls.Config{} for _, opt := range opts { opt(&cfg)