Fix url inside health check

This commit is contained in:
Ben Sarmiento
2023-11-25 18:24:33 +01:00
parent 0e7f99cef6
commit 2d9b53863e

View File

@@ -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