From b956147dd4afb99e2e18ee270f711a95845bcf50 Mon Sep 17 00:00:00 2001 From: tbergervoet Date: Thu, 4 Oct 2018 13:16:23 +0200 Subject: [PATCH] Update 'Main-Installer.sh' --- Main-Installer.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Main-Installer.sh b/Main-Installer.sh index 828f826..b5791a5 100644 --- a/Main-Installer.sh +++ b/Main-Installer.sh @@ -21,7 +21,7 @@ echo "Administrator email:" read email echo "Webserver:" PS3='Keuze:' -options=("Apache" "Apache, Nginx reverse proxy" "Nginx, PHP-FPM" "Quit") +options=("Apache" "Apache, Nginx reverse proxy" "Nginx reverse proxy" "Nginx, PHP-FPM" "Quit") select opt in "${options[@]}" do case $opt in @@ -31,6 +31,9 @@ do "Apache, Nginx reverse proxy") script=https://git.ictmaatwerk.com/VPS-scripts/Ubuntu-Web/raw/branch/dev/RevProxyAdvanced.sh break;; + "Nginx reverse proxy") + script=https://git.ictmaatwerk.com/VPS-scripts/Ubuntu-Web/raw/branch/dev/RevProxySimple.sh + break;; "Nginx, PHP-FPM") script=https://git.ictmaatwerk.com/VPS-scripts/Ubuntu-Web/raw/branch/dev/NGINX-Installer.sh break;;