diff --git a/templates/httpcheck.conf b/templates/httpcheck.conf index 9a7f4942f6797769e037a6089b9f817a55d6353c..d53f3fbf185d883b807e372e9136f6de8a92a708 100644 --- a/templates/httpcheck.conf +++ b/templates/httpcheck.conf @@ -154,4 +154,13 @@ redirect: no header: {{ site.uptime.header|to_json }} {% endif %} {% endif %} +{% if site.ocs is defined %} + +{{ site.domain|to_uuid }}: + name: NextCloud OCS {{ site.id }} + url: {{ site.protocol|default('https') }}://{{ site.domain }}/ocs/v2.php/apps/serverinfo/api/v1/info?format=json + header: + Authorization: Basic {{ (site.ocs.username + ':' + site.ocs.password) | b64encode }} + regex: {{ '"status":"ok"'|regex_escape() }} +{% endif %} {% endfor %}