summaryrefslogtreecommitdiffstats
path: root/server/gen_config.sh
blob: 23181eece120fa43322283cd97475f31723665bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#/bin/sh

APACHECONF="$1"
INSTALLDIR="$2"

echo "Creating Apache config file: apache-rteval.conf"
escinstpath="$(echo ${INSTALLDIR} | sed -e 's/\//\\\\\//g')"
expr=$(echo "s/{_INSTALLDIR_}/${escinstpath}/")
eval "sed -e ${expr} ${APACHECONF}.tpl" > apache-rteval.conf
echo "Copy the apache apache-rteval.conf into your Apache configuration"
echo "directory and restart your web server"
echo