2018-10-21 09:58:25 +00:00
|
|
|
---
|
|
|
|
|
2019-02-05 10:08:00 +00:00
|
|
|
- name: Determine well-known files to check (Matrix)
|
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
|
2020-03-31 08:45:32 +00:00
|
|
|
follow_redirects: "{{ matrix_nginx_proxy_self_check_well_known_matrix_client_follow_redirects }}"
|
2019-03-22 07:39:17 +00:00
|
|
|
validate_certs: "{{ matrix_nginx_proxy_self_check_validate_certificates }}"
|
2019-02-05 10:08:00 +00:00
|
|
|
|
2022-09-27 08:38:33 +00:00
|
|
|
- when: matrix_well_known_matrix_server_enabled | bool
|
|
|
|
block:
|
2022-07-18 07:39:08 +00:00
|
|
|
- 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
|
2019-03-22 07:39:17 +00:00
|
|
|
validate_certs: "{{ matrix_nginx_proxy_self_check_validate_certificates }}"
|
2019-02-05 10:08:00 +00:00
|
|
|
|
2020-01-08 21:31:44 +00:00
|
|
|
- name: Determine domains that we require certificates for (ma1sd)
|
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
|