pelican-panel-mirror/docker/healthcheck.sh
2025-08-10 15:30:58 -04:00

9 lines
153 B
Bash

#!/bin/ash -e
if [ ${SKIP_CADDY} ! "true" ]; then
curl -f http://localhost/up || exit 1
fi
cgi-fcgi -bind -connect 127.0.0.1:9000 || exit 2
exit 0