2020-05-18 17:50:58 +02:00
|
|
|
# Database / Postgres service configuration
|
2020-02-24 15:30:14 +01:00
|
|
|
POSTGRES_USER=<MY POSTGRES USERNAME>
|
|
|
|
POSTGRES_PASSWORD=<MY POSTGRES PASSWORD>
|
2020-05-18 17:50:58 +02:00
|
|
|
# Postgres database name "peertube"
|
|
|
|
POSTGRES_DB=peertube
|
|
|
|
# Editable only with a suffix :
|
|
|
|
#POSTGRES_DB=peertube_prod
|
|
|
|
#PEERTUBE_DB_SUFFIX=_prod
|
2020-02-24 15:30:14 +01:00
|
|
|
PEERTUBE_DB_USERNAME=<MY POSTGRES USERNAME>
|
|
|
|
PEERTUBE_DB_PASSWORD=<MY POSTGRES PASSWORD>
|
2021-05-25 11:34:10 +02:00
|
|
|
PEERTUBE_DB_SSL=false
|
2020-05-18 17:50:58 +02:00
|
|
|
# Default to Postgres service name "postgres" in docker-compose.yml
|
2019-11-18 09:38:05 +01:00
|
|
|
PEERTUBE_DB_HOSTNAME=postgres
|
2020-05-18 17:50:58 +02:00
|
|
|
|
|
|
|
# Server configuration
|
2020-02-24 15:30:14 +01:00
|
|
|
PEERTUBE_WEBSERVER_HOSTNAME=<MY DOMAIN>
|
2020-05-18 17:50:58 +02:00
|
|
|
# If you do not use https and a reverse-proxy in docker-compose.yml
|
|
|
|
#PEERTUBE_WEBSERVER_PORT=80
|
|
|
|
#PEERTUBE_WEBSERVER_HTTPS=false
|
2018-10-22 19:11:01 +02:00
|
|
|
# If you need more than one IP as trust_proxy
|
|
|
|
# pass them as a comma separated array:
|
2019-05-21 12:25:00 +02:00
|
|
|
PEERTUBE_TRUST_PROXY=["127.0.0.1", "loopback", "172.18.0.0/16"]
|
2020-05-18 17:50:58 +02:00
|
|
|
|
|
|
|
# E-mail configuration
|
|
|
|
# If you use a Custom SMTP server
|
2019-03-08 15:38:22 +01:00
|
|
|
#PEERTUBE_SMTP_USERNAME=
|
|
|
|
#PEERTUBE_SMTP_PASSWORD=
|
2020-05-18 17:50:58 +02:00
|
|
|
# Default to Postfix service name "postfix" in docker-compose.yml
|
|
|
|
# May be the hostname of your Custom SMTP server
|
2018-11-21 15:35:26 +01:00
|
|
|
PEERTUBE_SMTP_HOSTNAME=postfix
|
2018-06-02 08:36:49 +02:00
|
|
|
PEERTUBE_SMTP_PORT=25
|
2020-02-24 15:30:14 +01:00
|
|
|
PEERTUBE_SMTP_FROM=noreply@<MY DOMAIN>
|
2019-03-08 15:38:22 +01:00
|
|
|
PEERTUBE_SMTP_TLS=false
|
2018-06-27 08:54:24 +02:00
|
|
|
PEERTUBE_SMTP_DISABLE_STARTTLS=false
|
2020-02-24 15:30:14 +01:00
|
|
|
PEERTUBE_ADMIN_EMAIL=<MY EMAIL ADDRESS>
|
2020-05-18 17:50:58 +02:00
|
|
|
|
|
|
|
# Postfix service configuration
|
2020-02-24 15:30:14 +01:00
|
|
|
POSTFIX_myhostname=<MY DOMAIN>
|
2020-03-10 15:14:19 +01:00
|
|
|
# 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
|
2020-06-12 13:55:40 +02:00
|
|
|
# see https://github.com/wader/postfix-relay/pull/18
|
|
|
|
OPENDKIM_RequireSafeKeys=no
|
2020-05-18 17:50:58 +02:00
|
|
|
|
2018-06-04 14:45:58 +02:00
|
|
|
# /!\ Prefer to use the PeerTube admin interface to set the following configurations /!\
|
2018-06-05 14:04:51 +02:00
|
|
|
#PEERTUBE_SIGNUP_ENABLED=true
|
|
|
|
#PEERTUBE_TRANSCODING_ENABLED=true
|
2019-01-09 15:14:29 +01:00
|
|
|
#PEERTUBE_CONTACT_FORM_ENABLED=true
|