From 201b20165712c0dcb660e7a195a17a60f09cc937 Mon Sep 17 00:00:00 2001 From: Micha Date: Sun, 21 Jun 2026 22:39:15 +0200 Subject: [PATCH] Fix Dawarich healthcheck behind HTTPS --- apps/dawarich/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dawarich/docker-compose.yml b/apps/dawarich/docker-compose.yml index a6dce10..9f83a8d 100644 --- a/apps/dawarich/docker-compose.yml +++ b/apps/dawarich/docker-compose.yml @@ -115,7 +115,7 @@ services: expose: - "3000" healthcheck: - test: ["CMD-SHELL", "wget -qO - http://127.0.0.1:3000/api/v1/health | grep -q '\"status\"[[:space:]]*:[[:space:]]*\"ok\"'"] + test: ["CMD-SHELL", "wget -qO - --header=\"Host: ${DAWARICH_HOST}\" --header=\"X-Forwarded-Proto: https\" http://127.0.0.1:3000/api/v1/health | grep -q '\"status\"[[:space:]]*:[[:space:]]*\"ok\"'"] interval: 10s timeout: 10s retries: 30