Skip to content
Snippets Groups Projects
Commit 7adf1a21 authored by Demian Katz's avatar Demian Katz
Browse files

Improved compatibility with Apache 2.4.

parent 6d0f8f41
No related merge requests found
......@@ -35,5 +35,9 @@ cd $VUFIND_HOME
php install.php --use-defaults
# Set up Apache for VuFind and reload configuration
ln -s $VUFIND_LOCAL_DIR/httpd-vufind.conf /etc/apache2/conf.d/vufind2
APACHE_CONF_DIR=/etc/apache2/conf.d
if [ ! -d $APACHE_CONF_DIR ]; then
APACHE_CONF_DIR=/etc/apache2/conf-enabled
fi
ln -s $VUFIND_LOCAL_DIR/httpd-vufind.conf $APACHE_CONF_DIR/vufind2
/etc/init.d/apache2 force-reload
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment