mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-01 23:04:15 +02:00
40 lines
1.8 KiB
Django/Jinja
40 lines
1.8 KiB
Django/Jinja
# @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
|
|
|
|
# Database Configuration
|
|
MYSQL_DATABASE= "{{database_name}}"
|
|
MYSQL_USER= "{{database_username}}"
|
|
MYSQL_PASSWORD= "{{database_password}}"
|
|
MYSQL_HOST= "{{database_host}}:{{database_port}}"
|
|
|
|
# PHP
|
|
PHP_MEMORY_LIMIT= "{{applications[application_id].perfomance.php.memory_limit}}"
|
|
PHP_UPLOAD_LIMIT= "{{applications[application_id].perfomance.php.upload_limit}}"
|
|
PHP_OPCACHE_MEMORY_CONSUMPTION= "{{applications[application_id].perfomance.php.opcache_memory_consumption}}"
|
|
|
|
# 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= "{{system_email.local}}"
|
|
MAIL_DOMAIN= "{{system_email.domain}}"
|
|
|
|
# Initial Admin Data
|
|
NEXTCLOUD_ADMIN_USER= "{{applications[application_id].users.administrator.username}}"
|
|
NEXTCLOUD_ADMIN_PASSWORD= "{{applications[application_id].users.administrator.initial_password}}"
|
|
|
|
# Security
|
|
|
|
NEXTCLOUD_TRUSTED_DOMAINS= "{{domains[application_id]}}"
|
|
# Whitelist local docker gateway in Nextcloud to prevent brute-force throtteling
|
|
TRUSTED_PROXIES= "192.168.102.65"
|
|
OVERWRITECLIURL= "https://{{domains[application_id]}}"
|
|
OVERWRITEPROTOCOL= "https"
|
|
|
|
# Redis Configuration
|
|
REDIS_HOST= redis
|
|
REDIS_PORT= 6379 |