2022-02-05 20:32:54 +00:00
|
|
|
---
|
2021-05-21 08:15:05 +00:00
|
|
|
|
2021-02-15 09:25:35 +00:00
|
|
|
# Unless `matrix_synapse_workers_enabled_list` is explicitly defined,
|
|
|
|
# we'll generate it dynamically.
|
2022-11-24 14:27:11 +00:00
|
|
|
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/synapse/workers/init.yml"
|
2022-11-23 13:52:58 +00:00
|
|
|
when: "matrix_synapse_workers_enabled | bool and matrix_synapse_workers_enabled_list | length == 0"
|
2021-02-15 09:25:35 +00:00
|
|
|
|
2022-09-15 04:05:25 +00:00
|
|
|
- name: Ensure workers are injected into various places
|
|
|
|
ansible.builtin.include_tasks: "{{ role_path }}/tasks/synapse/workers/util/inject_worker.yml"
|
2021-01-25 10:14:46 +00:00
|
|
|
with_items: "{{ matrix_synapse_workers_enabled_list }}"
|
|
|
|
loop_control:
|
|
|
|
loop_var: matrix_synapse_worker_details
|
2022-11-23 13:52:58 +00:00
|
|
|
when: matrix_synapse_workers_enabled | bool
|
2021-01-25 10:14:46 +00:00
|
|
|
|
2022-11-23 13:52:58 +00:00
|
|
|
- when: matrix_synapse_metrics_proxying_enabled | bool
|
2022-09-27 08:38:33 +00:00
|
|
|
block:
|
2022-06-23 14:44:11 +00:00
|
|
|
- name: Fail if matrix-nginx-proxy role already executed
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.fail:
|
2022-06-23 14:44:11 +00:00
|
|
|
msg: >-
|
|
|
|
Trying to append Synapse's reverse-proxying configuration to matrix-nginx-proxy,
|
|
|
|
but it's pointless since the matrix-nginx-proxy role had already executed.
|
|
|
|
To fix this, please change the order of roles in your playbook,
|
|
|
|
so that the matrix-nginx-proxy role would run after the matrix-synapse role.
|
2022-07-18 08:22:05 +00:00
|
|
|
when: matrix_nginx_proxy_role_executed | default(False) | bool
|
2022-06-23 14:44:11 +00:00
|
|
|
|
|
|
|
- name: Generate synapse metrics proxying configuration for matrix-nginx-proxy (matrix.DOMAIN/metrics/synapse/main-process)
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.set_fact:
|
2022-06-23 14:44:11 +00:00
|
|
|
matrix_synapse_nginx_metrics_configuration_block: |
|
|
|
|
location /metrics/synapse/main-process {
|
2022-07-18 08:22:05 +00:00
|
|
|
{% if matrix_nginx_proxy_enabled | default(False) %}
|
2022-06-23 14:44:11 +00:00
|
|
|
{# Use the embedded DNS resolver in Docker containers to discover the service #}
|
|
|
|
resolver 127.0.0.11 valid=5s;
|
|
|
|
set $backend "matrix-synapse:{{ matrix_synapse_metrics_port }}";
|
|
|
|
proxy_pass http://$backend/_synapse/metrics;
|
|
|
|
{% else %}
|
|
|
|
{# Generic configuration for use outside of our container setup #}
|
|
|
|
proxy_pass http://127.0.0.1:{{ matrix_synapse_metrics_port }}/_synapse/metrics;
|
|
|
|
{% endif %}
|
|
|
|
}
|
|
|
|
|
|
|
|
- name: Register synapse metrics proxying configuration with matrix-nginx-proxy (matrix.DOMAIN/metrics/synapse/main-process)
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.set_fact:
|
2022-06-23 14:44:11 +00:00
|
|
|
matrix_nginx_proxy_proxy_matrix_metrics_additional_system_location_configuration_blocks: |
|
|
|
|
{{
|
2022-07-18 08:22:05 +00:00
|
|
|
matrix_nginx_proxy_proxy_matrix_metrics_additional_system_location_configuration_blocks | default([])
|
2022-06-23 14:44:11 +00:00
|
|
|
+
|
|
|
|
[matrix_synapse_nginx_metrics_configuration_block]
|
|
|
|
}}
|
|
|
|
|
|
|
|
- name: Generate synapse worker metrics proxying configuration for matrix-nginx-proxy (matrix.DOMAIN/metrics/synapse/worker)
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.set_fact:
|
2022-06-23 14:44:11 +00:00
|
|
|
matrix_synapse_worker_nginx_metrics_configuration_block: |
|
|
|
|
{% for worker in matrix_synapse_workers_enabled_list %}
|
|
|
|
{% if worker.metrics_port != 0 %}
|
2022-09-15 04:05:25 +00:00
|
|
|
location /metrics/synapse/worker/{{ worker.id }} {
|
2022-06-23 14:44:11 +00:00
|
|
|
resolver 127.0.0.11 valid=5s;
|
2022-09-15 04:05:25 +00:00
|
|
|
set $backend "{{ worker.name }}:{{ worker.metrics_port }}";
|
2022-06-23 14:44:11 +00:00
|
|
|
proxy_pass http://$backend/_synapse/metrics;
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
2022-09-18 09:21:09 +00:00
|
|
|
when: matrix_synapse_workers_enabled_list | length > 0
|
2022-06-23 14:44:11 +00:00
|
|
|
|
|
|
|
- name: Register synapse worker metrics proxying configuration with matrix-nginx-proxy (matrix.DOMAIN/metrics/synapse/worker)
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.set_fact:
|
2022-06-23 14:44:11 +00:00
|
|
|
matrix_nginx_proxy_proxy_matrix_metrics_additional_system_location_configuration_blocks: |
|
|
|
|
{{
|
2022-07-18 08:22:05 +00:00
|
|
|
matrix_nginx_proxy_proxy_matrix_metrics_additional_system_location_configuration_blocks | default([])
|
2022-06-23 14:44:11 +00:00
|
|
|
+
|
|
|
|
[matrix_synapse_worker_nginx_metrics_configuration_block]
|
|
|
|
}}
|
2022-09-18 09:21:09 +00:00
|
|
|
when: matrix_synapse_workers_enabled_list | length > 0
|