mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
67f51c84f8
Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
21 lines
571 B
Django/Jinja
21 lines
571 B
Django/Jinja
# This file contains the base for the shared homeserver config file between Synapse workers,
|
|
# as part of ./Dockerfile-workers.
|
|
# configure_workers_and_start.py uses and amends to this file depending on the workers
|
|
# that have been selected.
|
|
|
|
{% if enable_redis %}
|
|
redis:
|
|
enabled: true
|
|
{% endif %}
|
|
|
|
{% if appservice_registrations is not none %}
|
|
## Application Services ##
|
|
# A list of application service config files to use.
|
|
app_service_config_files:
|
|
{%- for path in appservice_registrations %}
|
|
- "{{ path }}"
|
|
{%- endfor %}
|
|
{%- endif %}
|
|
|
|
{{ shared_worker_config }}
|