funkwhale/docker/nginx/entrypoint.sh

12 wiersze
265 B
Bash
Czysty Zwykły widok Historia

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