Adds a retry to the URL check whether ONLYOFFICE is available from the public internet

This commit is contained in:
Jan Beilicke 2020-05-02 22:53:25 +02:00
parent 93ed8e709a
commit 11e8db9a38

View file

@ -56,8 +56,12 @@
become: false
uri:
url: https://{{ onlyoffice_virtual_host }}
return_content: yes
timeout: 300
validate_certs: no
register: url_check
delegate_to: localhost
until: "'Document Server is running' in url_check.content"
retries: 5
delay: 10
tags: health