disable the default site in apache2 since it obstructs our configuration

This commit is contained in:
Antoine Beaupré 2008-10-07 17:23:09 +00:00
parent 0184e3c641
commit 57b53fe31b
1 changed files with 4 additions and 0 deletions

View File

@ -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 ln -sf /var/alternc/apacheconf/override_php.conf /etc/apache2/conf.d/override_php.conf
s="apache2" s="apache2"
fi fi
if [ -e /etc/apache2/sites-enabled/000-default ]; then
a2dissite default
s="apache2"
fi
SERVICES="$SERVICES $s" SERVICES="$SERVICES $s"
fi fi