Dotfiles/dotfiles/bin/a2changedocumentroot
2016-08-15 20:00:11 +01:00

12 lines
274 B
Bash
Executable file

#!/bin/sh
if [ -z "$1" ] || [ -z "$2" ]; then
echo "USAGE: a2changedocumentroot new/documentroot apache/config/file"
exit 128
fi
sed -i "/DocumentRoot/c\ DocumentRoot $1" $2
echo "Document Root has been changed restarting apache"
sudo service apache2 restart