Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion root/healthcheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if ! curl -fs http://127.0.0.1:${NGINX_PORT:-80}/ > /dev/null; then
fi

# Check Web App
if ! curl -fs http://127.0.0.1:${WEB_APP_PORT:-3000}/ > /dev/null; then
if ! curl -fs http://127.0.0.1:${WEB_APP_PORT:-3000}${SUBFOLDER:-/} > /dev/null; then
echo "Web App check failed"
exit 1
fi
Expand Down