From cda53ea254de51eb46cb0f53f7d33b9a0f794bfc Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Wed, 18 May 2016 17:55:40 +0200 Subject: Move /etc/ssl/private/dhparams.pem to /etc/ssl/dhparams.pem and make it public. Ideally we we should also increase the Diffie-Hellman group size from 2048-bit to 3072-bit, as per ENISA 2014 report. https://www.enisa.europa.eu/publications/algorithms-key-size-and-parameters-report-2014 But we postpone that for now until we are reasonably certain that older client won't be left out. --- roles/common-web/files/etc/nginx/snippets/ssl.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'roles/common-web') diff --git a/roles/common-web/files/etc/nginx/snippets/ssl.conf b/roles/common-web/files/etc/nginx/snippets/ssl.conf index 1d40ce6..4af4d53 100644 --- a/roles/common-web/files/etc/nginx/snippets/ssl.conf +++ b/roles/common-web/files/etc/nginx/snippets/ssl.conf @@ -11,7 +11,7 @@ ssl_session_cache shared:SSL:50m; ssl_session_tickets off; # Diffie-Hellman parameter for DHE ciphersuites, recommended 2048 bits -ssl_dhparam /etc/ssl/private/dhparams.pem; +ssl_dhparam /etc/ssl/dhparams.pem; # intermediate configuration. tweak to your needs. ssl_protocols TLSv1 TLSv1.1 TLSv1.2; -- cgit v1.2.3