mirror of
https://github.com/pelican-dev/panel.git
synced 2025-09-08 08:18:50 +02:00
9 lines
153 B
Bash
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 |