From 7cfc51ec35c781472c93d2f5dd0b3981ee407405 Mon Sep 17 00:00:00 2001 From: Evert Ramos Date: Mon, 23 Oct 2017 10:05:52 -0200 Subject: [PATCH] Fix dhparam.pem path The dhparam.pem is located in the certs folder. --- nginx.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.tmpl b/nginx.tmpl index 65faa0b..4d18f12 100644 --- a/nginx.tmpl +++ b/nginx.tmpl @@ -42,7 +42,7 @@ map $http_upgrade $proxy_connection { server_names_hash_bucket_size 128; # Default dhparam -ssl_dhparam /etc/nginx/dhparam/dhparam.pem; +ssl_dhparam /etc/nginx/certs/dhparam.pem; # Set appropriate X-Forwarded-Ssl header map $scheme $proxy_x_forwarded_ssl { @@ -319,4 +319,4 @@ server { {{ end }} {{ end }} -{{ end }} \ No newline at end of file +{{ end }}