We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11d94af commit 7f55f53Copy full SHA for 7f55f53
service/proxy.go
@@ -307,6 +307,15 @@ func Start() {
307
Addr: fmt.Sprintf(":%d", gatewayHttpsPort),
308
TLSConfig: &tls.Config{
309
MinVersion: tls.VersionTLS12,
310
+ CipherSuites: []uint16{
311
+ // Secure cipher suites for TLS 1.2 (excluding 3DES to prevent Sweet32 attack)
312
+ tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
313
+ tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
314
+ tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
315
+ tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,
316
+ tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
317
+ tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,
318
+ },
319
},
320
}
321
0 commit comments