]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - support/docker/production/entrypoint.nginx.sh
move traefik to its own override file
[github/Chocobozzz/PeerTube.git] / support / docker / production / entrypoint.nginx.sh
CommitLineData
1a9b141d
RK
1#!/bin/sh
2set -e
3
b8f3e6b0
RK
4# Process the nginx template
5SOURCE_FILE="/etc/nginx/conf.d/peertube.template"
6TARGET_FILE="/etc/nginx/conf.d/default.conf"
1a9b141d
RK
7export WEBSERVER_HOST="default_server"
8export PEERTUBE_HOST="peertube:9000"
9
b8f3e6b0 10envsubst '${WEBSERVER_HOST} ${PEERTUBE_HOST}' < $SOURCE_FILE > $TARGET_FILE
1a9b141d
RK
11
12# Remove HTTPS/SSL from nginx conf
b8f3e6b0 13sed -i 's/443 ssl http2/80/g;/ssl_/d' $TARGET_FILE
1a9b141d 14
1a9b141d 15nginx -g "daemon off;"