From 2e71da368b18bbe04664155570df6ac7161e7753 Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Sun, 11 Jul 2021 17:47:08 +0200 Subject: [PATCH] nginx/{php,static}: Remove legacy "ssl on" directive --- roles/nginx/php/templates/server.conf | 1 - roles/nginx/static/templates/static.conf | 1 - 2 files changed, 2 deletions(-) diff --git a/roles/nginx/php/templates/server.conf b/roles/nginx/php/templates/server.conf index 79baedc..f8222d1 100644 --- a/roles/nginx/php/templates/server.conf +++ b/roles/nginx/php/templates/server.conf @@ -3,7 +3,6 @@ server { listen [::]:443 ssl http2; server_name {{ effective_domain }}; - ssl on; ssl_certificate {{ acme_fullchain_location }}; ssl_certificate_key {{ acme_key_location }}; diff --git a/roles/nginx/static/templates/static.conf b/roles/nginx/static/templates/static.conf index d5c2ac4..cb22887 100644 --- a/roles/nginx/static/templates/static.conf +++ b/roles/nginx/static/templates/static.conf @@ -3,7 +3,6 @@ server { listen [::]:443 ssl http2; server_name {{ effective_domain }}; - ssl on; ssl_certificate {{ acme_fullchain_location }}; ssl_certificate_key {{ acme_key_location }};