Compare commits
2 Commits
main
...
codex/mult
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1d41423c2e | ||
|
|
3b9c622626 |
@ -74,23 +74,23 @@
|
||||
|
||||
- name: Check xworkmate-bridge public domain root
|
||||
ansible.builtin.uri:
|
||||
url: "http://127.0.0.1/"
|
||||
url: "{{ xworkmate_bridge_service_public_base_url }}/"
|
||||
method: GET
|
||||
headers:
|
||||
Host: "{{ xworkmate_bridge_service_domain }}"
|
||||
follow_redirects: none
|
||||
status_code: [200, 301, 302, 307, 308]
|
||||
follow_redirects: safe
|
||||
status_code: [200]
|
||||
validate_certs: true
|
||||
changed_when: false
|
||||
register: xworkmate_bridge_service_root
|
||||
|
||||
- name: Check xworkmate-bridge public domain ping
|
||||
ansible.builtin.uri:
|
||||
url: "http://127.0.0.1/api/ping"
|
||||
url: "{{ xworkmate_bridge_service_public_base_url }}/api/ping"
|
||||
method: GET
|
||||
headers:
|
||||
Host: "{{ xworkmate_bridge_service_domain }}"
|
||||
follow_redirects: none
|
||||
Authorization: "Bearer {{ xworkmate_bridge_auth_token }}"
|
||||
follow_redirects: safe
|
||||
status_code: [200]
|
||||
validate_certs: true
|
||||
return_content: true
|
||||
changed_when: false
|
||||
register: xworkmate_bridge_service_ping
|
||||
|
||||
Loading…
Reference in New Issue
Block a user