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