Add the Bird Control Plane gateway, signed webhook ingestion, policy-gated writes, fail-closed production auto-activation, and RSA-OAEP bootstrap credential flow.
10 lines
197 B
Bash
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;"
|