Compare commits

...

2 commits

Author SHA1 Message Date
1877aa338f Merge pull request 'update tls options' (#1) from tls_options into master
Reviewed-on: #1
2020-11-05 21:12:57 +01:00
f119bd7c37 update tls options
fixes #39
2020-11-05 20:41:47 +01:00

View file

@ -49,3 +49,17 @@
[[tls.certificates]]
certFile = "cert/grun.host.origin.pem"
keyFile = "cert/grun.host.origin.key"
[tls.options]
[tls.options.default]
minVersion = "VersionTLS12"
cipherSuites = [
"TLS_CHACHA20_POLY1305_SHA256",
"TLS_AES_128_GCM_SHA256",
"TLS_AES_256_GCM_SHA384",
"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
"TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384"
]
[tls.options.mintls13]
minVersion = "VersionTLS13"