2020-04-10 21:44:53 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
|
|
|
worker_app: synapse.app.{{ item.worker }}
|
|
|
|
|
|
|
|
worker_replication_host: 127.0.0.1
|
|
|
|
worker_replication_port: {{ matrix_synapse_replication_tcp_port }}
|
|
|
|
worker_replication_http_port: {{ matrix_synapse_replication_http_port }}
|
|
|
|
|
|
|
|
{% if item.worker not in [ 'appservice', 'federation_sender', 'pusher' ] %}
|
|
|
|
worker_listeners:
|
|
|
|
- type: http
|
|
|
|
port: {{ item.port }}
|
|
|
|
resources:
|
|
|
|
- names:
|
2020-08-28 11:53:39 +00:00
|
|
|
{% if item.worker in [ 'generic_worker', 'frontend_proxy', 'user_dir' ] %}
|
2020-04-10 21:44:53 +00:00
|
|
|
- client
|
|
|
|
- federation
|
|
|
|
{% elif item.worker in [ 'media_repository' ] %}
|
|
|
|
- media
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if item.worker == 'frontend_proxy' %}
|
|
|
|
worker_main_http_uri: http://127.0.0.1:8008
|
|
|
|
{% endif %}
|
2020-08-28 11:53:39 +00:00
|
|
|
|
2020-04-10 21:44:53 +00:00
|
|
|
worker_daemonize: false
|
|
|
|
worker_pid_file: /matrix-run/{{ item.worker }}.port{{ item.port }}.pid
|
|
|
|
worker_log_config: /data/{{ matrix_server_fqn_matrix }}.log.config
|