From 9b066de33128329aa5d3f2491eafee2e6f056e7f Mon Sep 17 00:00:00 2001 From: kisfenyo Date: Mon, 22 Jun 2026 15:04:52 +0200 Subject: [PATCH] komga: fix controller-side health probe path too (/actuator/health) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The .felhom.yml controller probe also pointed at the auth-gated /api/v1/actuator/health (401) — that is what drives the dashboard 'Nem egészséges' state. Repoint to the unauthenticated /actuator/health, matching the docker HC fix. Co-Authored-By: Claude Opus 4.8 (1M context) --- templates/komga/.felhom.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/komga/.felhom.yml b/templates/komga/.felhom.yml index fd81b7a..525848d 100644 --- a/templates/komga/.felhom.yml +++ b/templates/komga/.felhom.yml @@ -68,6 +68,7 @@ healthcheck: checks: - type: api port: 25600 - path: "/api/v1/actuator/health" + # /actuator/health is unauthenticated (200); the /api/v1 prefix is auth-gated (401). + path: "/actuator/health" expect: status: 200