mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-05-18 18:50:32 +02:00
13 lines
643 B
Django/Jinja
13 lines
643 B
Django/Jinja
MOODLE_DATABASE_HOST={{database_host}}
|
|
MOODLE_DATABASE_PORT_NUMBER={{database_port}}
|
|
MOODLE_DATABASE_USER={{database_username}}
|
|
MOODLE_DATABASE_NAME={{database_name}}
|
|
MOODLE_DATABASE_PASSWORD={{database_password}}
|
|
ALLOW_EMPTY_PASSWORD=no
|
|
MOODLE_SITE_NAME="{{applications[application_id].site_titel}}"
|
|
MOODLE_SSLPROXY=yes
|
|
MOODLE_REVERSE_PROXY=yes
|
|
MOODLE_USERNAME={{applications[application_id].users.administrator.username}}
|
|
MOODLE_PASSWORD={{applications[application_id].credentials.user_password}}
|
|
MOODLE_EMAIL={{applications[application_id].users.administrator.email}}
|
|
BITNAMI_DEBUG={% if enable_debug | bool %}true{% else %}false{% endif %} |