diff --git a/bin/v-list-sys-web-status b/bin/v-list-sys-web-status index aaa33e4c..a380deff 100755 --- a/bin/v-list-sys-web-status +++ b/bin/v-list-sys-web-status @@ -28,17 +28,17 @@ fi # Displaying proxy status if [ "$PROXY_SYSTEM" = 'nginx' ]; then echo "

$PROXY_SYSTEM STATUS

"| tr '[:lower:]' '[:upper:]' - curl -fsSL --max-time 3 http://localhost:8084/ + curl -fsSL --max-time 10 http://localhost:8084/ echo "


" fi # Displaying web server status echo "

$WEB_SYSTEM STATUS

"| tr '[:lower:]' '[:upper:]' if [ "$WEB_SYSTEM" != 'nginx' ]; then - curl -fsSL --max-time 3 http://localhost:8081/server-status/ |\ + curl -fsSL --max-time 10 http://localhost:8081/server-status/ |\ egrep -v "html|DOCTYPE|h1>|title|head" else - curl -fsSL --max-time 3 http://localhost:8084/ + curl -fsSL --max-time 10 http://localhost:8084/ fi