Initial fix for apache 2.4 vhost file

This commit is contained in:
Duncan Sommerville 2015-01-20 17:31:59 -05:00
parent b58891f1fa
commit 7034c8e00d
3 changed files with 25 additions and 3 deletions

View file

@ -326,7 +326,12 @@ if [ "$apache" = "t" ]; then
if [ ! -f /etc/apache2/sites-available/${airtimeconfigfile} ]; then
verbose "\n * Creating Apache config for Airtime..."
sed -e "s@WEB_ROOT@${web_root}@g" ${SCRIPT_DIR}/installer/apache/airtime-vhost > /etc/apache2/sites-available/${airtimeconfigfile}
if [ "$apacheversion" != "1" ]; then
sed -e "s@WEB_ROOT@${web_root}@g" ${SCRIPT_DIR}/installer/apache/airtime-vhost-2.4 > /etc/apache2/sites-available/${airtimeconfigfile}
else
sed -e "s@WEB_ROOT@${web_root}@g" ${SCRIPT_DIR}/installer/apache/airtime-vhost > /etc/apache2/sites-available/${airtimeconfigfile}
fi
loudCmd "a2dissite 000-default"
loudCmd "a2ensite airtime"
else