uri.follow_redirects is now a string field
This commit is contained in:
parent
8d38ff65db
commit
86eff45e8b
@ -6,7 +6,7 @@
|
|||||||
- name: Check Matrix Corporal HTTP gateway
|
- name: Check Matrix Corporal HTTP gateway
|
||||||
uri:
|
uri:
|
||||||
url: "{{ corporal_client_api_url_endpoint_public }}"
|
url: "{{ corporal_client_api_url_endpoint_public }}"
|
||||||
follow_redirects: false
|
follow_redirects: none
|
||||||
return_content: true
|
return_content: true
|
||||||
register: result_corporal_client_api
|
register: result_corporal_client_api
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
- name: Check mxisd Identity Service
|
- name: Check mxisd Identity Service
|
||||||
uri:
|
uri:
|
||||||
url: "{{ mxisd_url_endpoint_public }}"
|
url: "{{ mxisd_url_endpoint_public }}"
|
||||||
follow_redirects: false
|
follow_redirects: none
|
||||||
validate_certs: "{{ matrix_mxisd_self_check_validate_certificates }}"
|
validate_certs: "{{ matrix_mxisd_self_check_validate_certificates }}"
|
||||||
register: result_mxisd
|
register: result_mxisd
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
- path: /.well-known/matrix/client
|
- path: /.well-known/matrix/client
|
||||||
purpose: Client Discovery
|
purpose: Client Discovery
|
||||||
cors: true
|
cors: true
|
||||||
follow_redirects: false
|
follow_redirects: none
|
||||||
validate_certs: "{{ matrix_nginx_proxy_self_check_validate_certificates }}"
|
validate_certs: "{{ matrix_nginx_proxy_self_check_validate_certificates }}"
|
||||||
|
|
||||||
- block:
|
- block:
|
||||||
@ -15,7 +15,7 @@
|
|||||||
path: /.well-known/matrix/server
|
path: /.well-known/matrix/server
|
||||||
purpose: Server Discovery
|
purpose: Server Discovery
|
||||||
cors: false
|
cors: false
|
||||||
follow_redirects: true
|
follow_redirects: safe
|
||||||
validate_certs: "{{ matrix_nginx_proxy_self_check_validate_certificates }}"
|
validate_certs: "{{ matrix_nginx_proxy_self_check_validate_certificates }}"
|
||||||
|
|
||||||
- name: Determine domains that we require certificates for (mxisd)
|
- name: Determine domains that we require certificates for (mxisd)
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
- name: Check .well-known on the matrix hostname
|
- name: Check .well-known on the matrix hostname
|
||||||
uri:
|
uri:
|
||||||
url: "{{ well_known_url_matrix }}"
|
url: "{{ well_known_url_matrix }}"
|
||||||
follow_redirects: false
|
follow_redirects: none
|
||||||
return_content: true
|
return_content: true
|
||||||
validate_certs: "{{ well_known_file_check.validate_certs }}"
|
validate_certs: "{{ well_known_file_check.validate_certs }}"
|
||||||
register: result_well_known_matrix
|
register: result_well_known_matrix
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
- name: Check riot-web
|
- name: Check riot-web
|
||||||
uri:
|
uri:
|
||||||
url: "{{ riot_web_url_endpoint_public }}"
|
url: "{{ riot_web_url_endpoint_public }}"
|
||||||
follow_redirects: false
|
follow_redirects: none
|
||||||
validate_certs: "{{ matrix_riot_web_self_check_validate_certificates }}"
|
validate_certs: "{{ matrix_riot_web_self_check_validate_certificates }}"
|
||||||
register: result_riot_web
|
register: result_riot_web
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
- name: Check Matrix Client API
|
- name: Check Matrix Client API
|
||||||
uri:
|
uri:
|
||||||
url: "{{ matrix_synapse_client_api_url_endpoint_public }}"
|
url: "{{ matrix_synapse_client_api_url_endpoint_public }}"
|
||||||
follow_redirects: false
|
follow_redirects: none
|
||||||
validate_certs: "{{ matrix_synapse_self_check_validate_certificates }}"
|
validate_certs: "{{ matrix_synapse_self_check_validate_certificates }}"
|
||||||
register: result_matrix_synapse_client_api
|
register: result_matrix_synapse_client_api
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
- name: Check Matrix Federation API
|
- name: Check Matrix Federation API
|
||||||
uri:
|
uri:
|
||||||
url: "{{ matrix_synapse_federation_api_url_endpoint_public }}"
|
url: "{{ matrix_synapse_federation_api_url_endpoint_public }}"
|
||||||
follow_redirects: false
|
follow_redirects: none
|
||||||
validate_certs: "{{ matrix_synapse_self_check_validate_certificates }}"
|
validate_certs: "{{ matrix_synapse_self_check_validate_certificates }}"
|
||||||
register: result_matrix_synapse_federation_api
|
register: result_matrix_synapse_federation_api
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
|
Loading…
Reference in New Issue
Block a user