diff --git a/installer.sh b/installer.sh index 6ddf351..1f13387 100644 --- a/installer.sh +++ b/installer.sh @@ -21,14 +21,14 @@ echo "Administrator email" read email echo "Webserver:" PS3='Keuze:' -options=("Apache" "NGINX+apache" "Nginx, PHP-FPM" "Quit") +options=("NGINX+PHP-FPM" "NGINX+Apache" "Apache" "Quit") select opt in "${options[@]}" do case $opt in "NGINX+PHP-FPM") webserver="--nginx yes --phpfpm yes --apache no" break;; - "NGINX+apache") + "NGINX+Apache") webserver="--nginx yes --phpfpm no --apache yes" break;; "Apache")