2025-02-10 22:42:08 +01:00
|
|
|
# @See https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html
|
|
|
|
# @See https://github.com/nextcloud/docker/blob/master/README.md
|
2025-02-04 22:37:07 +01:00
|
|
|
|
|
|
|
# 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 '' }}
|
2025-02-05 11:44:11 +01:00
|
|
|
SMTP_PORT= {{system_email.port}}
|
2025-02-04 22:37:07 +01:00
|
|
|
SMTP_NAME= {{system_email.username}}
|
|
|
|
SMTP_PASSWORD= {{system_email.password}}
|
|
|
|
|
|
|
|
# Email from configuration
|
2025-02-21 10:53:19 +01:00
|
|
|
MAIL_FROM_ADDRESS= "{{system_email.local}}"
|
|
|
|
MAIL_DOMAIN= "{{system_email.domain}}"
|
2025-02-21 08:59:07 +01:00
|
|
|
|
|
|
|
# Initial Admin Data
|
2025-02-21 10:53:19 +01:00
|
|
|
NEXTCLOUD_ADMIN_USER= "{{applications[application_id].credentials.administrator_username}}"
|
|
|
|
NEXTCLOUD_ADMIN_PASSWORD= "{{applications[application_id].credentials.administrator_initial_password}}"
|
2025-02-21 08:59:07 +01:00
|
|
|
|
2025-02-21 10:53:19 +01:00
|
|
|
NEXTCLOUD_TRUSTED_DOMAINS= "{{domains[application_id]}}"
|