1
0
Fork 0
peertube/support/docker/production/entrypoint.nginx.sh

18 lines
395 B
Bash
Raw Normal View History

#!/bin/sh
set -e
2020-06-22 11:06:54 +00:00
# Process the nginx template
SOURCE_FILE="/etc/nginx/conf.d/peertube.template"
TARGET_FILE="/etc/nginx/conf.d/default.conf"
2020-12-30 15:53:11 +00:00
export WEBSERVER_HOST="$PEERTUBE_WEBSERVER_HOSTNAME"
export PEERTUBE_HOST="peertube:9000"
2020-06-22 11:06:54 +00:00
envsubst '${WEBSERVER_HOST} ${PEERTUBE_HOST}' < $SOURCE_FILE > $TARGET_FILE
2020-12-30 15:53:11 +00:00
while :; do
sleep 12h & wait $!;
nginx -s reload;
done &
2020-12-30 15:53:11 +00:00
nginx -g 'daemon off;'