mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-02-22 12:29:39 +01:00
31 lines
1.0 KiB
Django/Jinja
31 lines
1.0 KiB
Django/Jinja
# The configuration options can be found here:
|
|
# @see https://hub.docker.com/_/friendica
|
|
|
|
FRIENDICA_URL= https://{{domains[application_id]}}
|
|
HOSTNAME= {{domains[application_id]}}
|
|
FRIENDICA_NO_VALIDATION={{no_validation | lower}}
|
|
|
|
# Debugging
|
|
FRIENDICA_DEBUGGING= {% if enable_debug | bool %}true{% else %}false{% endif %}
|
|
FRIENDICA_LOGLEVEL= 5
|
|
FRIENDICA_LOGGER= syslog
|
|
|
|
# Database Configuration
|
|
MYSQL_HOST= "{{database_host}}:{{database_port}}"
|
|
MYSQL_DATABASE= {{database_name}}
|
|
MYSQL_USER= {{database_username}}
|
|
MYSQL_PASSWORD= {{database_password}}
|
|
|
|
# Email Configuration
|
|
SMTP= {{system_email.host}}
|
|
SMTP_DOMAIN= {{system_email.domain}}
|
|
SMTP_PORT= {{system_email.port}}
|
|
SMTP_AUTH_USER= {{system_email.username}}
|
|
SMTP_AUTH_PASS= {{system_email.password}}
|
|
SMTP_TLS= {{ 'on' if system_email.tls else 'off' }}
|
|
SMTP_STARTTLS= {{ 'on' if system_email.start_tls else 'off' }}
|
|
SMTP_FROM= {{system_email.local}}
|
|
|
|
# Administrator Credentials
|
|
FRIENDICA_ADMIN_MAIL= {{administrator_email}}
|
|
MAILNAME= {{administrator_email}} |