Bladeren bron

ECDH only

Disable DHE ciphers. We don't loose any compatibility as we already use TLS 1.2, and ECDH is faster and safer.
Also, it's better so specify the curve.

This is the conf I use here : https://tls.imirhil.fr/https/mstdn.io
master
Angristan 7 jaren geleden
committed by GitHub
bovenliggende
commit
5dbcd92193
1 gewijzigde bestanden met toevoegingen van 2 en 1 verwijderingen
  1. +2
    -1
      docs/Running-Mastodon/Production-guide.md

+ 2
- 1
docs/Running-Mastodon/Production-guide.md Bestand weergeven

@@ -23,7 +23,8 @@ server {
server_name example.com;

ssl_protocols TLSv1.2;
ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';
ssl_ciphers EECDH+AESGCM:EECDH+AES;
ssl_ecdh_curve secp384r1;
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:10m;



Laden…
Annuleren
Opslaan