mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-18 08:16:04 +02:00
implemented peertube
This commit is contained in:
26
roles/docker-peertube/templates/env.j2
Normal file
26
roles/docker-peertube/templates/env.j2
Normal file
@@ -0,0 +1,26 @@
|
||||
# Database / Postgres service configuration
|
||||
POSTGRES_USER=peertube
|
||||
POSTGRES_PASSWORD={{peertube_database_password}}
|
||||
POSTGRES_DB=peertube
|
||||
PEERTUBE_DB_USERNAME=peertube
|
||||
PEERTUBE_DB_PASSWORD={{peertube_database_password}}
|
||||
PEERTUBE_DB_SSL=false
|
||||
PEERTUBE_DB_HOSTNAME=database
|
||||
|
||||
# PeerTube server configuration
|
||||
PEERTUBE_WEBSERVER_HOSTNAME={{domain}}
|
||||
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"]
|
||||
|
||||
# E-mail configuration
|
||||
PEERTUBE_SMTP_USERNAME={{system_email_username}}
|
||||
PEERTUBE_SMTP_PASSWORD={{system_email_password}}
|
||||
PEERTUBE_SMTP_HOSTNAME={{system_email_host}}
|
||||
PEERTUBE_SMTP_PORT={{system_email_port}}
|
||||
PEERTUBE_SMTP_FROM={{system_email}}
|
||||
PEERTUBE_SMTP_TLS=false
|
||||
PEERTUBE_SMTP_DISABLE_STARTTLS=false
|
||||
PEERTUBE_ADMIN_EMAIL={{system_email}}
|
Reference in New Issue
Block a user