Update 'installer.sh'

This commit is contained in:
bprieshof
2019-04-11 09:45:42 +02:00
parent cfb85510ad
commit f4891f7083

View File

@@ -85,6 +85,18 @@ while true; do
esac esac
done done
while true; do
read -p "Enable per-domain data user-> yes/no?" yn
case $yn in
[Yy]* ) datauser=1
wget https://git.ictmaatwerk.com/VPS-scripts/Ubuntu-FTP/raw/branch/master/data-user_setup.sh -O /root/data-user_setup.sh
break;;
[Nn]* ) datauser=0
break;;
* ) echo "Choose yes or no.";;
esac
done
if [ $webserv = n ]; then if [ $webserv = n ]; then
while true; do while true; do
read -p "Brotli Precompression > yes/no?" yn read -p "Brotli Precompression > yes/no?" yn