e2882b2ccb
* Sticking to one env-var management system Starting with the Postgres container so that you only have to set overlapping environment variables in one place. * Moving Postfix envvars pt 1 * Moving Postfix envvars pt 2 .env file * Added missing envvars. * Adding functioning glue Suggest something better if you wish. * removed IP from example * Removed default network from update.
25 lines
908 B
Bash
25 lines
908 B
Bash
POSTGRES_USER=peertube
|
|
POSTGRES_PASSWORD=peertube
|
|
POSTGRES_DB=peertube
|
|
PEERTUBE_DB_USERNAME=$(POSTGRES_USER)
|
|
PEERTUBE_DB_PASSWORD=$(POSTGRES_PASSWORD)
|
|
PEERTUBE_DB_HOSTNAME=postgres
|
|
PEERTUBE_WEBSERVER_HOSTNAME=domain.tld
|
|
PEERTUBE_WEBSERVER_PORT=443
|
|
PEERTUBE_WEBSERVER_HTTPS=true
|
|
# 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_SMTP_USERNAME=
|
|
#PEERTUBE_SMTP_PASSWORD=
|
|
PEERTUBE_SMTP_HOSTNAME=postfix
|
|
PEERTUBE_SMTP_PORT=25
|
|
PEERTUBE_SMTP_FROM=noreply@domain.tld
|
|
PEERTUBE_SMTP_TLS=false
|
|
PEERTUBE_SMTP_DISABLE_STARTTLS=false
|
|
PEERTUBE_ADMIN_EMAIL=admin@domain.tld
|
|
POSTFIX_myhostname=${PEERTUBE_WEBSERVER_HOSTNAME}
|
|
# /!\ Prefer to use the PeerTube admin interface to set the following configurations /!\
|
|
#PEERTUBE_SIGNUP_ENABLED=true
|
|
#PEERTUBE_TRANSCODING_ENABLED=true
|
|
#PEERTUBE_CONTACT_FORM_ENABLED=true
|