ci: check port 80 (via Nginx) instead of 3000
All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 4s

Made-with: Cursor
This commit is contained in:
2026-04-25 21:54:28 +02:00
parent 5bf2d7b983
commit 8aefedcaee

View File

@@ -37,11 +37,11 @@ jobs:
- name: Wait for app to be healthy
run: |
echo "Waiting up to 180s for http://192.168.1.190:3000 ..."
echo "Waiting up to 180s for http://192.168.1.190 ..."
for i in $(seq 1 36); do
CODE=$(curl -s -o /dev/null -w "%{http_code}" --max-time 5 http://192.168.1.190:3000/ || echo "000")
CODE=$(curl -s -o /dev/null -w "%{http_code}" --max-time 5 -L http://192.168.1.190/ || echo "000")
if [ "$CODE" != "000" ] && [ "$CODE" -lt 500 ]; then
echo "OK - app responded (HTTP $CODE) after $((i * 5))s"
echo "✅ App OK (HTTP $CODE) after $((i * 5))s"
exit 0
fi
echo " [$((i * 5))s] HTTP $CODE"