diff options
author | Artik Banana <lid@tuta.io> | 2018-06-16 18:14:05 +0000 |
---|---|---|
committer | Artik Banana <lid@tuta.io> | 2018-06-16 18:14:05 +0000 |
commit | 394d0c94c431d8289893391b6d50cc079807567e (patch) | |
tree | 55532bebced4fc19c928b094331772ae3fb9ec00 /installation/pleroma.nginx | |
parent | 1ea4a18ad859600841860cdd1a981da868aa18a0 (diff) | |
download | pleroma-394d0c94c431d8289893391b6d50cc079807567e.tar.gz pleroma-394d0c94c431d8289893391b6d50cc079807567e.zip |
Add comment about TLS curves for older servers.
Diffstat (limited to 'installation/pleroma.nginx')
-rw-r--r-- | installation/pleroma.nginx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/installation/pleroma.nginx b/installation/pleroma.nginx index e9eeb1848..78327594f 100644 --- a/installation/pleroma.nginx +++ b/installation/pleroma.nginx @@ -41,6 +41,8 @@ server { # ssl_ciphers "HIGH:!aNULL:!MD5 or HIGH:!aNULL:!MD5:!3DES"; ssl_ciphers "ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!RC4"; ssl_prefer_server_ciphers on; + # In case of an old server with an OpenSSL version of 1.0.2 or below, + # leave only prime256v1 or comment out the following line. ssl_ecdh_curve X25519:prime256v1:secp384r1:secp521r1; ssl_stapling on; ssl_stapling_verify on; |