2018-10-21 11:58:25 +02:00
|
|
|
---
|
|
|
|
|
2024-01-03 12:44:19 +01:00
|
|
|
# TODO - deprecate the old variables in the matrix-nginx-proxy role
|
2024-01-03 12:05:59 +01:00
|
|
|
|
2024-01-03 12:44:19 +01:00
|
|
|
- name: Determine well-known files to check (start with /.well-known/matrix/client)
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.set_fact:
|
2019-02-05 11:08:00 +01:00
|
|
|
well_known_file_checks:
|
|
|
|
- path: /.well-known/matrix/client
|
|
|
|
purpose: Client Discovery
|
|
|
|
cors: true
|
2024-01-03 12:44:19 +01:00
|
|
|
follow_redirects: "{{ matrix_static_files_self_check_well_known_matrix_client_follow_redirects }}"
|
|
|
|
validate_certs: "{{ matrix_static_files_self_check_validate_certificates }}"
|
2019-02-05 11:08:00 +01:00
|
|
|
|
2022-09-27 10:38:33 +02:00
|
|
|
- when: matrix_well_known_matrix_server_enabled | bool
|
|
|
|
block:
|
2024-01-03 12:44:19 +01:00
|
|
|
- name: Prepare /.well-known/matrix/server to well-known files to check, if enabled
|
|
|
|
ansible.builtin.set_fact:
|
2019-02-05 11:08:00 +01:00
|
|
|
well_known_file_check_matrix_server:
|
|
|
|
path: /.well-known/matrix/server
|
|
|
|
purpose: Server Discovery
|
|
|
|
cors: false
|
2020-01-22 22:33:20 +01:00
|
|
|
follow_redirects: safe
|
2024-01-03 12:44:19 +01:00
|
|
|
validate_certs: "{{ matrix_static_files_self_check_validate_certificates }}"
|
2019-02-05 11:08:00 +01:00
|
|
|
|
2024-01-03 12:44:19 +01:00
|
|
|
- name: Inject /.well-known/matrix/server to well-known files to check, if enabled
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.set_fact:
|
2019-02-05 11:08:00 +01:00
|
|
|
well_known_file_checks: "{{ well_known_file_checks + [well_known_file_check_matrix_server] }}"
|
|
|
|
|
2019-02-05 10:07:08 +01:00
|
|
|
- name: Perform well-known checks
|
2022-07-18 10:22:05 +02:00
|
|
|
ansible.builtin.include_tasks: "{{ role_path }}/tasks/self_check_well_known_file.yml"
|
2019-02-05 11:08:00 +01:00
|
|
|
with_items: "{{ well_known_file_checks }}"
|
2019-02-05 10:07:08 +01:00
|
|
|
loop_control:
|
|
|
|
loop_var: well_known_file_check
|