Add Initial Code (Not production ready)

This commit is contained in:
deathrow 2022-10-31 19:41:26 -04:00
commit 1a6c426720
No known key found for this signature in database
GPG key ID: FF39D67A22069F73
11 changed files with 1220 additions and 0 deletions

View 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 }}