From 5f27d551d8a00e852a6cde7a617297c2ce06967d Mon Sep 17 00:00:00 2001 From: Benjamin Sonntag Date: Sun, 24 Jun 2018 18:17:10 +0200 Subject: [PATCH] [fix] enable ssl module for Apache --- install/alternc.install | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install/alternc.install b/install/alternc.install index ee47fca6..a704d54d 100755 --- a/install/alternc.install +++ b/install/alternc.install @@ -368,6 +368,10 @@ if [ -x /usr/sbin/apache2 ]; then then a2enmod expires fi + if ! [ -L /etc/apache2/mods-enabled/ssl.load ] + then + a2enmod ssl + fi if [ ! -h /etc/apache2/conf-available/alternc-ssl.conf ] && [ -e /etc/apache2/conf-available/ ]; then ln -sf /etc/alternc/apache2-ssl.conf /etc/apache2/conf-available/alternc-ssl.conf