|
| 1 | +NODE_VERSION=21.7.1 |
| 2 | +NODE_ENV=dev |
| 3 | +NODE_DB_LOG=false |
| 4 | + |
| 5 | +# Database / Postgres service configuration |
| 6 | +POSTGRES_USER=postgres |
| 7 | +# Postgres database name "peertube" |
| 8 | +POSTGRES_DB=peertube_dev |
| 9 | +# The database name used by PeerTube will be PEERTUBE_DB_NAME (only if set) *OR* 'peertube'+PEERTUBE_DB_SUFFIX |
| 10 | +#PEERTUBE_DB_NAME=<MY POSTGRES DB NAME> |
| 11 | +#PEERTUBE_DB_SUFFIX=_prod |
| 12 | +# Database username and password used by PeerTube must match Postgres', so they are copied: |
| 13 | +PEERTUBE_DB_USERNAME=$POSTGRES_USER |
| 14 | +PEERTUBE_DB_PASSWORD=$POSTGRES_PASSWORD |
| 15 | +PEERTUBE_DB_SSL=false |
| 16 | +# Default to Postgres service name "postgres" in docker-compose.yml |
| 17 | +PEERTUBE_DB_HOSTNAME=postgres |
| 18 | + |
| 19 | +# PeerTube server configuration |
| 20 | +# If you test PeerTube in local: use "peertube.localhost" and add this domain to your host file resolving on 127.0.0.1 |
| 21 | +PEERTUBE_WEBSERVER_HOSTNAME=peertube.localhost |
| 22 | +# If you just want to test PeerTube on local |
| 23 | +PEERTUBE_WEBSERVER_PORT=9000 |
| 24 | +PEERTUBE_WEBSERVER_HTTPS=false |
| 25 | +# If you need more than one IP as trust_proxy |
| 26 | +# pass them as a comma separated array: |
| 27 | +PEERTUBE_TRUST_PROXY=["127.0.0.1", "loopback", "172.18.0.0/16"] |
| 28 | + |
| 29 | +# E-mail configuration |
| 30 | +# If you use a Custom SMTP server |
| 31 | +#PEERTUBE_SMTP_USERNAME= |
| 32 | +#PEERTUBE_SMTP_PASSWORD= |
| 33 | +# Default to Postfix service name "postfix" in docker-compose.yml |
| 34 | +# May be the hostname of your Custom SMTP server |
| 35 | +PEERTUBE_SMTP_HOSTNAME=postfix |
| 36 | +PEERTUBE_SMTP_PORT=25 |
| 37 | +PEERTUBE_SMTP_FROM=[email protected] |
| 38 | +PEERTUBE_SMTP_TLS=false |
| 39 | +PEERTUBE_SMTP_DISABLE_STARTTLS=false |
| 40 | +PEERTUBE_ADMIN_EMAIL=[email protected] |
| 41 | + |
| 42 | +# Postfix service configuration |
| 43 | +POSTFIX_myhostname=example.org |
| 44 | +# If you need to generate a list of sub/DOMAIN keys |
| 45 | +# pass them as a whitespace separated string <DOMAIN>=<selector> |
| 46 | +OPENDKIM_DOMAINS=example.org=peertube |
| 47 | +# see https://github.com/wader/postfix-relay/pull/18 |
| 48 | +OPENDKIM_RequireSafeKeys=no |
| 49 | + |
| 50 | +PEERTUBE_OBJECT_STORAGE_UPLOAD_ACL_PUBLIC="public-read" |
| 51 | +PEERTUBE_OBJECT_STORAGE_UPLOAD_ACL_PRIVATE="private" |
| 52 | + |
| 53 | +#PEERTUBE_LOG_LEVEL=info |
| 54 | + |
| 55 | +# /!\ Prefer to use the PeerTube admin interface to set the following configurations /!\ |
| 56 | +#PEERTUBE_SIGNUP_ENABLED=true |
| 57 | +#PEERTUBE_TRANSCODING_ENABLED=true |
| 58 | +#PEERTUBE_CONTACT_FORM_ENABLED=true |
| 59 | + |
| 60 | +PEERTUBE_REDIS_HOSTNAME=redis-with-volumes |
0 commit comments