From 36ae845083ed45ae4c3d312a4ad56095184aa44c Mon Sep 17 00:00:00 2001 From: tbergervoet Date: Mon, 15 Oct 2018 13:31:30 +0200 Subject: [PATCH] Update 'Extra_Domains/Domain_Installer.sh' --- Extra_Domains/Domain_Installer.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Extra_Domains/Domain_Installer.sh b/Extra_Domains/Domain_Installer.sh index 2b8a26e..33c4fe4 100644 --- a/Extra_Domains/Domain_Installer.sh +++ b/Extra_Domains/Domain_Installer.sh @@ -21,19 +21,19 @@ echo "Administrator email:" read email echo "Webserver:" PS3='Keuze:' -options=("Apache" "Apache, Nginx reverse proxy" "Nginx reverse proxy" "Nginx, PHP-FPM" "Quit") +options=("Apache" "Nginx proxy" "Nginx proxy & standalone" "Nginx, PHP-FPM" "Quit") select opt in "${options[@]}" do case $opt in "Apache") script=https://git.ictmaatwerk.com/VPS-scripts/Ubuntu-Web/raw/branch/dev/Extra_Domains/Apache_Domain.sh break;; - "Apache, Nginx reverse proxy") - script=https://git.ictmaatwerk.com/VPS-scripts/Ubuntu-Web/raw/branch/dev/Extra_Domains/RevProxyAdvanced_Domain.sh - break;; - "Nginx reverse proxy") + "Nginx proxy") script=https://git.ictmaatwerk.com/VPS-scripts/Ubuntu-Web/raw/branch/dev/Extra_Domains/RevProxySimple_Domain.sh break;; + "Nginx proxy & standalone") + script=https://git.ictmaatwerk.com/VPS-scripts/Ubuntu-Web/raw/branch/dev/Extra_Domains/RevProxyAdvanced_Domain.sh + break;; "Nginx, PHP-FPM") script=https://git.ictmaatwerk.com/VPS-scripts/Ubuntu-Web/raw/branch/dev/Extra_Domains/NGINX_Domain.sh break;;