Files
api/services/coolify/api/start.sh
T
Jeppe B a442e70744 Add secure Bird gateway for Pleno Control Plane (#332)
Add the Bird Control Plane gateway, signed webhook ingestion, policy-gated writes, fail-closed production auto-activation, and RSA-OAEP bootstrap credential flow.
2026-07-29 19:59:20 +02:00

10 lines
197 B
Bash

#!/bin/sh
set -e
mkdir -p /run/nginx
if [ "${CONFIG_DB_TARGET:-live}" = "live" ]; then
php /var/www/html/scripts/bird-control-plane-auto-activate.php
fi
php-fpm -D
exec nginx -g "daemon off;"