# Database / Postgres service configuration POSTGRES_USER=peertube POSTGRES_PASSWORD={{ peertube_db_password }} # Postgres database name "peertube" POSTGRES_DB=peertube PEERTUBE_DB_USERNAME=peertube PEERTUBE_DB_PASSWORD={{ peertube_db_password }} PEERTUBE_DB_SSL=false PEERTUBE_DB_HOSTNAME={{ peertube_db_container_name }} PEERTUBE_SECRET={{ peertube_secret }} # Server configuration PEERTUBE_WEBSERVER_HOSTNAME={{ peertube_subdomain }}.{{ domain_name }} PEERTUBE_WEBSERVER_PORT=9000 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"] # E-mail configuration # If you use a Custom SMTP server PEERTUBE_SMTP_USERNAME={{ peertube_subdomain }} PEERTUBE_SMTP_PASSWORD={{ peertube_mail_password }} PEERTUBE_SMTP_HOSTNAME=mail.gandi.net PEERTUBE_SMTP_PORT=587 PEERTUBE_SMTP_FROM={{ peertube_subdomain }}@{{ domain_name }} PEERTUBE_SMTP_TLS=true PEERTUBE_SMTP_DISABLE_STARTTLS=false PEERTUBE_ADMIN_EMAIL=quentinduchemin@tuta.io # /!\ 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 PEERTUBE_REDIS_HOSTNAME={{ peertube_redis_container }}