funquail/docker/nginx/entrypoint.sh

11 lines
265 B
Bash
Raw Normal View History

2022-11-24 21:14:59 +01:00
#!/bin/sh
2022-11-24 21:14:59 +01:00
set -eux
TEMPLATE_PATH="/etc/nginx/nginx.conf.template"
CONFIG_PATH="/etc/nginx/nginx.conf"
2022-11-24 21:14:59 +01:00
ALLOWED_VARS="$(env | cut -d '=' -f 1 | xargs printf "\${%s} ")"
envsubst "$ALLOWED_VARS" < "$TEMPLATE_PATH" | tee "$CONFIG_PATH"
2022-11-24 21:14:59 +01:00
nginx-debug -g 'daemon off;'