mirror of https://github.com/portainer/portainer
fix(tls): add missing cipher suites EE-5465 (#8924)
parent
c3c2221437
commit
7197ca435a
|
@ -20,6 +20,8 @@ func CreateTLSConfiguration() *tls.Config {
|
|||
tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
|
||||
tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,
|
||||
tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
|
||||
tls.TLS_RSA_WITH_AES_128_GCM_SHA256,
|
||||
tls.TLS_RSA_WITH_AES_256_GCM_SHA384,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue