2018-10-21 09:58:25 +00:00
|
|
|
---
|
|
|
|
|
2019-02-05 10:08:00 +00:00
|
|
|
- name: Determine well-known files to check (Matrix)
|
|
|
|
set_fact:
|
|
|
|
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
|
|
|
|
|
|
|
- block:
|
|
|
|
- set_fact:
|
|
|
|
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)
|
2019-02-05 10:08:00 +00:00
|
|
|
set_fact:
|
|
|
|
well_known_file_checks: "{{ well_known_file_checks + [well_known_file_check_matrix_server] }}"
|
2019-05-21 15:25:59 +00:00
|
|
|
when: matrix_well_known_matrix_server_enabled|bool
|
2019-02-05 10:08:00 +00:00
|
|
|
|
2019-02-05 09:07:08 +00:00
|
|
|
- name: Perform well-known checks
|
|
|
|
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
|