From 2d9b53863e6321384bf4aac8d43ced7f7bf490bd Mon Sep 17 00:00:00 2001 From: Ben Sarmiento Date: Sat, 25 Nov 2023 18:24:33 +0100 Subject: [PATCH] Fix url inside health check --- healthcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/healthcheck.sh b/healthcheck.sh index f8f8dc7..df17c87 100644 --- a/healthcheck.sh +++ b/healthcheck.sh @@ -1,5 +1,5 @@ #!/bin/sh -response=$(curl -o /dev/null -s -w "%{http_code}" http://zen.box:9999/__all__/) +response=$(curl -o /dev/null -s -w "%{http_code}" http://localhost:9999/__all__/) if [ "$response" -eq 200 ]; then exit 0 else