Update 'installer.sh'

This commit is contained in:
tbergervoet
2018-10-16 13:47:11 +02:00
parent e2a2e8127c
commit 4db2076028

View File

@@ -21,14 +21,14 @@ echo "Administrator email"
read email read email
echo "Webserver:" echo "Webserver:"
PS3='Keuze:' PS3='Keuze:'
options=("Apache" "NGINX+apache" "Nginx, PHP-FPM" "Quit") options=("NGINX+PHP-FPM" "NGINX+Apache" "Apache" "Quit")
select opt in "${options[@]}" select opt in "${options[@]}"
do do
case $opt in case $opt in
"NGINX+PHP-FPM") "NGINX+PHP-FPM")
webserver="--nginx yes --phpfpm yes --apache no" webserver="--nginx yes --phpfpm yes --apache no"
break;; break;;
"NGINX+apache") "NGINX+Apache")
webserver="--nginx yes --phpfpm no --apache yes" webserver="--nginx yes --phpfpm no --apache yes"
break;; break;;
"Apache") "Apache")