From 4db2076028921bdd3099beebf9112d7fb32cbc10 Mon Sep 17 00:00:00 2001 From: tbergervoet Date: Tue, 16 Oct 2018 13:47:11 +0200 Subject: [PATCH] Update 'installer.sh' --- installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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")