diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-03-02 12:00:40 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-07-22 19:49:51 +0100 |
commit | 88358cf03107b2b9661d9718792b1fc06b42c38d (patch) | |
tree | c38e832cc6415495141b0fa8951a2d0019e2642b | |
parent | e9ec0362a80e601a96bfbd170c4cf59d4867bdc8 (diff) | |
download | spacebeans-88358cf03107b2b9661d9718792b1fc06b42c38d.tar.gz spacebeans-88358cf03107b2b9661d9718792b1fc06b42c38d.zip |
Reviewed ciphers, adding TLS 1.3
-rw-r--r-- | spacebeans.conf.example | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/spacebeans.conf.example b/spacebeans.conf.example index 69d278f..96e9d08 100644 --- a/spacebeans.conf.example +++ b/spacebeans.conf.example @@ -56,11 +56,15 @@ virtual-hosts = [ gen-cert-valid-for = "365 days" enabled-protocols = [ "TLSv1.2", "TLSv1.3" ] enabled-cipher-suites = [ + // TLSv 1.2 "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256", "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256", "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384", "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384", "TLS_DHE_RSA_WITH_AES_256_GCM_SHA384", - "TLS_DHE_RSA_WITH_AES_128_GCM_SHA256" + "TLS_DHE_RSA_WITH_AES_128_GCM_SHA256", + // TLSv 1.3 + "TLS_AES_128_GCM_SHA256", + "TLS_AES_256_GCM_SHA384" ] |