Files
govoplan/tools/release/runtime/web-entrypoint.sh
T
zemion bf2f02891f
Dependency Audit / dependency-audit (push) Successful in 1m48s
Deployment Installer / deployment-installer (push) Successful in 6s
Security Audit / security-audit (push) Successful in 11m31s
Developer Meta-package Release / publish-package (push) Successful in 10s
Release v0.1.18
2026-08-05 21:07:52 +02:00

12 lines
248 B
Bash

#!/bin/sh
set -eu
: "${GOVOPLAN_API_UPSTREAM:=http://load-balancer:8000}"
export GOVOPLAN_API_UPSTREAM
envsubst '${GOVOPLAN_API_UPSTREAM}' \
< /etc/nginx/nginx.conf.template \
> /tmp/nginx.conf
exec nginx -c /tmp/nginx.conf -g 'daemon off;'