This repository has been archived by the owner on Jul 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
# Database / Postgres service configuration | ||
POSTGRES_USER=<MY POSTGRES USERNAME> | ||
POSTGRES_PASSWORD=<MY POSTGRES PASSWORD> | ||
POSTGRES_USER=peertube | ||
POSTGRES_PASSWORD=peertube | ||
# Postgres database name "peertube" | ||
POSTGRES_DB=peertube | ||
# Editable only with a suffix : | ||
#POSTGRES_DB=peertube_prod | ||
#PEERTUBE_DB_SUFFIX=_prod | ||
PEERTUBE_DB_USERNAME=<MY POSTGRES USERNAME> | ||
PEERTUBE_DB_PASSWORD=<MY POSTGRES PASSWORD> | ||
PEERTUBE_DB_USERNAME=peertube | ||
PEERTUBE_DB_PASSWORD=peertube | ||
# Default to Postgres service name "postgres" in docker-compose.yml | ||
PEERTUBE_DB_HOSTNAME=postgres | ||
|
||
# Server configuration | ||
PEERTUBE_WEBSERVER_HOSTNAME=<MY DOMAIN> | ||
PEERTUBE_WEBSERVER_HOSTNAME=motibus.hexe.net | ||
# If you do not use https and a reverse-proxy in docker-compose.yml | ||
#PEERTUBE_WEBSERVER_PORT=80 | ||
#PEERTUBE_WEBSERVER_HTTPS=false | ||
# If you need more than one IP as trust_proxy | ||
# pass them as a comma separated array: | ||
PEERTUBE_TRUST_PROXY=["127.0.0.1", "loopback", "172.18.0.0/16"] | ||
PEERTUBE_TRUST_PROXY=["127.0.0.1", "loopback", "172.16.0.0/12"] | ||
|
||
# E-mail configuration | ||
# If you use a Custom SMTP server | ||
|
@@ -28,16 +28,16 @@ PEERTUBE_TRUST_PROXY=["127.0.0.1", "loopback", "172.18.0.0/16"] | |
# May be the hostname of your Custom SMTP server | ||
PEERTUBE_SMTP_HOSTNAME=postfix | ||
PEERTUBE_SMTP_PORT=25 | ||
PEERTUBE_SMTP_FROM=noreply@<MY DOMAIN> | ||
PEERTUBE_SMTP_FROM=noreply@motibus.hexe.net | ||
PEERTUBE_SMTP_TLS=false | ||
PEERTUBE_SMTP_DISABLE_STARTTLS=false | ||
PEERTUBE_ADMIN_EMAIL=<MY EMAIL ADDRESS> | ||
PEERTUBE_ADMIN_EMAIL=[email protected] | ||
|
||
# Postfix service configuration | ||
POSTFIX_myhostname=<MY DOMAIN> | ||
POSTFIX_myhostname=motibus.hexe.net | ||
# If you need to generate a list of sub/DOMAIN keys | ||
# pass them as a whitespace separated string <DOMAIN>=<selector> | ||
OPENDKIM_DOMAINS=<MY DOMAIN>=peertube | ||
OPENDKIM_DOMAINS=motibus.hexe.net=peertube | ||
# see https://github.com/wader/postfix-relay/pull/18 | ||
OPENDKIM_RequireSafeKeys=no | ||
|
||
|