mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-02-23 12:51:54 +01:00
21 lines
724 B
Django/Jinja
21 lines
724 B
Django/Jinja
# See https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html
|
|
|
|
# Database Configuration
|
|
MYSQL_DATABASE= "{{database_name}}"
|
|
MYSQL_USER= "{{database_username}}"
|
|
MYSQL_PASSWORD= "{{database_password}}"
|
|
MYSQL_HOST= "{{database_host}}:{{database_port}}"
|
|
|
|
# Memory
|
|
PHP_MEMORY_LIMIT= 1G # Required for plugin duplicate finder
|
|
|
|
# Email Configuration
|
|
SMTP_HOST= {{system_email.host}}
|
|
SMTP_SECURE= {{ 'ssl' if system_email.tls else '' }}
|
|
SMTP_PORT= {{system_email.port}}
|
|
SMTP_NAME= {{system_email.username}}
|
|
SMTP_PASSWORD= {{system_email.password}}
|
|
|
|
# Email from configuration
|
|
MAIL_FROM_ADDRESS= no-reply
|
|
MAIL_DOMAIN= {{system_email.domain}} |