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