mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-07 03:07:33 +01:00
501efee07e
also, worker.yaml.j2: - hone worker_name - remove worker_pid_file entry (would only be used if worker_daemonize set to true; also, synapse only knows about the container namespace and thus can not provide the required host-view PID)
30 lines
846 B
Django/Jinja
30 lines
846 B
Django/Jinja
#jinja2: lstrip_blocks: "True"
|
|
worker_app: synapse.app.{{ item.worker }}
|
|
worker_name: {{ item.worker ~ ':' ~ item.port }}
|
|
|
|
worker_replication_host: 127.0.0.1
|
|
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:
|
|
{% if item.worker in [ 'generic_worker', 'frontend_proxy', 'user_dir' ] %}
|
|
- client
|
|
{% endif %}
|
|
{% if item.worker in [ 'generic_worker' ] %}
|
|
- 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 %}
|
|
|
|
worker_daemonize: false
|
|
worker_log_config: /data/{{ matrix_server_fqn_matrix }}.log.config
|