mirror of
https://github.com/itiligent/Easy-Guacamole-Installer.git
synced 2025-12-13 18:02:32 +00:00
Add redirect warning for DUO
reversed default, redirected guacamole URL no longer the default
This commit is contained in:
parent
3a357c0451
commit
50b2935457
1 changed files with 5 additions and 5 deletions
|
|
@ -570,12 +570,12 @@ fi
|
||||||
|
|
||||||
# Prompt to redirect http://root:8080 to http://root:8080/guacamole if not installing reverse proxy
|
# Prompt to redirect http://root:8080 to http://root:8080/guacamole if not installing reverse proxy
|
||||||
if [[ -z ${GUAC_URL_REDIR} ]] && [[ "${INSTALL_NGINX}" = false ]]; then
|
if [[ -z ${GUAC_URL_REDIR} ]] && [[ "${INSTALL_NGINX}" = false ]]; then
|
||||||
echo -e -n "FRONT END: Redirect Guacamole http://domain.root:8080 to /guacamole [y/n]? [default y]: "
|
echo -e -n "FRONT END: Redirect http://domain.root:8080 to /guacamole (Warning: redirect may break DUO) [y/n]? [default n]: "
|
||||||
read PROMPT
|
read PROMPT
|
||||||
if [[ ${PROMPT} =~ ^[Nn]$ ]]; then
|
if [[ ${PROMPT} =~ ^[Yy]$ ]]; then
|
||||||
GUAC_URL_REDIR=false
|
|
||||||
else
|
|
||||||
GUAC_URL_REDIR=true
|
GUAC_URL_REDIR=true
|
||||||
|
else
|
||||||
|
GUAC_URL_REDIR=false
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue