mirror of
https://git.anonymousland.org/anonymousland/synapse-worker-docker.git
synced 2025-08-02 22:26:03 -04:00
Add Initial Code (Not production ready)
This commit is contained in:
commit
1a6c426720
11 changed files with 1220 additions and 0 deletions
20
rootfs/conf-workers/shared.yaml.j2
Normal file
20
rootfs/conf-workers/shared.yaml.j2
Normal file
|
@ -0,0 +1,20 @@
|
|||
# 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 }}
|
Loading…
Add table
Add a link
Reference in a new issue