mirror of
https://git.anonymousland.org/anonymousland/synapse-worker-docker.git
synced 2025-02-07 10:15:24 -05:00
20 lines
570 B
Plaintext
20 lines
570 B
Plaintext
|
# 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 }}
|