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