2022-11-24 21:14:59 +01:00
|
|
|
#!/bin/sh
|
2018-04-08 18:19:32 +02:00
|
|
|
|
2022-11-24 21:14:59 +01:00
|
|
|
set -eux
|
2018-03-29 20:30:24 +02:00
|
|
|
|
2022-11-26 14:29:57 +01:00
|
|
|
TEMPLATE_PATH="/etc/nginx/nginx.conf.template"
|
|
|
|
|
CONFIG_PATH="/etc/nginx/nginx.conf"
|
2022-11-24 21:14:59 +01:00
|
|
|
|
2022-11-26 14:29:57 +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;'
|