fix sphinx chet connection test

This commit is contained in:
rootzoll 2021-03-26 14:26:38 +01:00
parent 945531bcda
commit 46bf1d8f29

View File

@ -303,7 +303,7 @@ if [ "$1" = "status" ]; then
# test connection (accept self-signed certs here) ... calling the url /app should return INDEX
connectionTest="n/a"
connectionResponse=$(wget -qO- ${publicURL}/app 2>/dev/null)
connectionResponse=$(wget --no-check-certificate -qO- ${publicURL}/app 2>/dev/null)
if [ "${connectionResponse}" == "INDEX" ]; then
connectionTest="OK"
else