3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 22:19:31 +01:00

relax SSL restrictions

This commit is contained in:
Jeremy Latt 2014-02-09 19:59:45 -08:00
parent 3fd73e3252
commit 56cb8512dc

View File

@ -77,7 +77,6 @@ func newListener(config ListenerConfig) (net.Listener, error) {
return tls.Listen("tcp", config.Address, &tls.Config{
Certificates: []tls.Certificate{certificate},
PreferServerCipherSuites: true,
MinVersion: tls.VersionTLS12,
})
}