AzuraCast/util/docker/web/startup_scripts/05_nginx_conf.sh

12 lines
334 B
Bash
Raw Normal View History

#!/bin/bash
2022-03-16 08:02:45 +01:00
REDIS_LOCAL=false
if [ -f /etc/supervisor/minimal.conf.d/redis.conf ]; then
2022-03-16 08:02:45 +01:00
REDIS_LOCAL=true
fi
2022-03-16 08:02:45 +01:00
export REDIS_LOCAL
# Copy the nginx template to its destination.
2022-01-24 14:11:34 +01:00
dockerize -template "/etc/nginx/nginx.conf.tmpl:/etc/nginx/nginx.conf" \
-template "/etc/nginx/azuracast.conf.tmpl:/etc/nginx/sites-available/default"