Ver a proveniência
Merge pull request #354 from thedanbob/uri-follow-redirects-fix
uri.follow_redirects is now a string field
pull/355/head
Slavi Pantaleev
há 6 anos
committed by
GitHub
ascendente
cometimento
6c784b88cd
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados
ID da chave GPG: 4AEE18F83AFDEB23
7 ficheiros alterados com
8 adições e
8 eliminações
-
roles/matrix-corporal/tasks/self_check_corporal.yml
-
roles/matrix-mxisd/tasks/self_check_mxisd.yml
-
roles/matrix-nginx-proxy/tasks/self_check_well_known.yml
-
roles/matrix-nginx-proxy/tasks/self_check_well_known_file.yml
-
roles/matrix-riot-web/tasks/self_check_riot_web.yml
-
roles/matrix-synapse/tasks/self_check_client_api.yml
-
roles/matrix-synapse/tasks/self_check_federation_api.yml
|
|
|
@@ -6,7 +6,7 @@ |
|
|
|
- name: Check Matrix Corporal HTTP gateway |
|
|
|
uri: |
|
|
|
url: "{{ corporal_client_api_url_endpoint_public }}" |
|
|
|
follow_redirects: false |
|
|
|
follow_redirects: none |
|
|
|
return_content: true |
|
|
|
register: result_corporal_client_api |
|
|
|
ignore_errors: true |
|
|
|
|
|
|
|
@@ -6,7 +6,7 @@ |
|
|
|
- name: Check mxisd Identity Service |
|
|
|
uri: |
|
|
|
url: "{{ mxisd_url_endpoint_public }}" |
|
|
|
follow_redirects: false |
|
|
|
follow_redirects: none |
|
|
|
validate_certs: "{{ matrix_mxisd_self_check_validate_certificates }}" |
|
|
|
register: result_mxisd |
|
|
|
ignore_errors: true |
|
|
|
|
|
|
|
@@ -6,7 +6,7 @@ |
|
|
|
- path: /.well-known/matrix/client |
|
|
|
purpose: Client Discovery |
|
|
|
cors: true |
|
|
|
follow_redirects: false |
|
|
|
follow_redirects: none |
|
|
|
validate_certs: "{{ matrix_nginx_proxy_self_check_validate_certificates }}" |
|
|
|
|
|
|
|
- block: |
|
|
|
@@ -15,7 +15,7 @@ |
|
|
|
path: /.well-known/matrix/server |
|
|
|
purpose: Server Discovery |
|
|
|
cors: false |
|
|
|
follow_redirects: true |
|
|
|
follow_redirects: safe |
|
|
|
validate_certs: "{{ matrix_nginx_proxy_self_check_validate_certificates }}" |
|
|
|
|
|
|
|
- name: Determine domains that we require certificates for (mxisd) |
|
|
|
|
|
|
|
@@ -9,7 +9,7 @@ |
|
|
|
- name: Check .well-known on the matrix hostname |
|
|
|
uri: |
|
|
|
url: "{{ well_known_url_matrix }}" |
|
|
|
follow_redirects: false |
|
|
|
follow_redirects: none |
|
|
|
return_content: true |
|
|
|
validate_certs: "{{ well_known_file_check.validate_certs }}" |
|
|
|
register: result_well_known_matrix |
|
|
|
|
|
|
|
@@ -6,7 +6,7 @@ |
|
|
|
- name: Check riot-web |
|
|
|
uri: |
|
|
|
url: "{{ riot_web_url_endpoint_public }}" |
|
|
|
follow_redirects: false |
|
|
|
follow_redirects: none |
|
|
|
validate_certs: "{{ matrix_riot_web_self_check_validate_certificates }}" |
|
|
|
register: result_riot_web |
|
|
|
ignore_errors: true |
|
|
|
|
|
|
|
@@ -3,7 +3,7 @@ |
|
|
|
- name: Check Matrix Client API |
|
|
|
uri: |
|
|
|
url: "{{ matrix_synapse_client_api_url_endpoint_public }}" |
|
|
|
follow_redirects: false |
|
|
|
follow_redirects: none |
|
|
|
validate_certs: "{{ matrix_synapse_self_check_validate_certificates }}" |
|
|
|
register: result_matrix_synapse_client_api |
|
|
|
ignore_errors: true |
|
|
|
|
|
|
|
@@ -3,7 +3,7 @@ |
|
|
|
- name: Check Matrix Federation API |
|
|
|
uri: |
|
|
|
url: "{{ matrix_synapse_federation_api_url_endpoint_public }}" |
|
|
|
follow_redirects: false |
|
|
|
follow_redirects: none |
|
|
|
validate_certs: "{{ matrix_synapse_self_check_validate_certificates }}" |
|
|
|
register: result_matrix_synapse_federation_api |
|
|
|
ignore_errors: true |
|
|
|
|