From aab7a89cf6f4c23ee0ec9c669219b18f1ac5cc20 Mon Sep 17 00:00:00 2001 From: Wonderfall Date: Mon, 30 May 2016 15:46:59 +0200 Subject: [PATCH] Update ngxproxy --- boring-nginx/ngxproxy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boring-nginx/ngxproxy b/boring-nginx/ngxproxy index f4111fe..c62af74 100644 --- a/boring-nginx/ngxproxy +++ b/boring-nginx/ngxproxy @@ -26,7 +26,7 @@ read -p "Webroot (default is /): " WEBROOT if [ "$WEBROOT" == "" ]; then WEBROOT="/" else - echo "Depending on the app, you might have to add a proxy header to get your custom webroot working." + echo "WARNING: Depending on the app, you might have to add a proxy header to get your custom webroot working." while [[ "$CONFIGURE_WEBROOT" != "y" && "$CONFIGURE_WEBROOT" != "n" ]]; do read -p "Is it required to configure it? [y/n]: " CONFIGURE_WEBROOT @@ -34,7 +34,7 @@ else if [ "$CONFIGURE_WEBROOT" == "y" ]; then while [ "$WEBROOT_HEADER" == "" ]; do - read -p "Type the required proxy_set_header: " WEBROOT_HEADER + read -p "Type the required proxy_set_header (something like X-Script-Name): " WEBROOT_HEADER done fi fi