From a194cd80d0a1985c125151ec9fcd42ed730f3054 Mon Sep 17 00:00:00 2001 From: Benjamin Sonntag Date: Sat, 7 Jul 2018 13:13:28 +0200 Subject: [PATCH] [fix] vhost http template missing SSLENGINE and CERT instructions in 443 Vhost --- etc/alternc/templates/apache2/vhost-http.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/etc/alternc/templates/apache2/vhost-http.conf b/etc/alternc/templates/apache2/vhost-http.conf index c163bc86..5754a8e9 100644 --- a/etc/alternc/templates/apache2/vhost-http.conf +++ b/etc/alternc/templates/apache2/vhost-http.conf @@ -10,6 +10,11 @@ RewriteCond %{REQUEST_FILENAME} !/.well-known/acme-challenge/ RewriteRule ^/(.*)$ http://%%fqdn%%/$1 [R=301,L] + SSLEngine On + SSLCertificateFile %%CRT%% + SSLCertificateKeyFile %%KEY%% + %%CHAINLINE%% +