From 72328a9f4b4b36c703480a1d56e61434edfd2e8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Beaupr=C3=A9?= Date: Tue, 7 Oct 2008 18:00:06 +0000 Subject: [PATCH] configure SSL on apache2 --- install/alternc.install | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/install/alternc.install b/install/alternc.install index 145f2961..edffe8a4 100644 --- a/install/alternc.install +++ b/install/alternc.install @@ -210,6 +210,18 @@ if [ -x /usr/sbin/apache2 ]; then a2enmod $php s="apache2" fi + if ! grep '^Listen.*443$' /etc/apache2/ports.conf; then + echo "Listen 443" >> /etc/apache2/ports.conf + s="apache2" + fi + if [ ! -h /etc/apache2/mods-enabled/ssl.load ] ; then + a2enmod ssl + s="apache2" + fi + if [ ! -h /etc/apache2/conf.d/alternc-ssl.conf ] && [ -e /etc/apache2/conf.d/ ]; then + ln -sf /etc/alternc/apache-ssl.conf /etc/apache2/conf.d/alternc-ssl.conf + s="apache2" + fi if [ ! -h /etc/apache2/conf.d/alternc.conf ] && [ -e /etc/apache2/conf.d/ ]; then ln -sf /etc/alternc/apache2.conf /etc/apache2/conf.d/alternc.conf s="apache2"