From 57b53fe31b2803c6bc880a8b071215471f30a3b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Beaupr=C3=A9?= Date: Tue, 7 Oct 2008 17:23:09 +0000 Subject: [PATCH] disable the default site in apache2 since it obstructs our configuration --- install/alternc.install | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install/alternc.install b/install/alternc.install index eccfd72c..145f2961 100644 --- a/install/alternc.install +++ b/install/alternc.install @@ -218,6 +218,10 @@ if [ -x /usr/sbin/apache2 ]; then ln -sf /var/alternc/apacheconf/override_php.conf /etc/apache2/conf.d/override_php.conf s="apache2" fi + if [ -e /etc/apache2/sites-enabled/000-default ]; then + a2dissite default + s="apache2" + fi SERVICES="$SERVICES $s" fi