disable the default site in apache2 since it obstructs our configuration
This commit is contained in:
parent
0184e3c641
commit
57b53fe31b
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue