From 6026f14664ae1a653202e8530cf13f2540947500 Mon Sep 17 00:00:00 2001 From: f Date: Mon, 29 Jun 2026 12:04:53 -0300 Subject: [PATCH] fix: prevent forward warning on logs > trustForwardHeader is not configured: this creates an inconsistent > security behavior where some X-Forwarded headers (e.g. > X-Forwarded-For, X-Forwarded-Proto) are removed but others (e.g. > X-Forwarded-Prefix) are forwarded untouched. Please set it to false to > remove all X-Forwarded headers, or true to trust them all. --- compose.anubis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/compose.anubis.yml b/compose.anubis.yml index adb4411..f490e9b 100644 --- a/compose.anubis.yml +++ b/compose.anubis.yml @@ -5,6 +5,7 @@ services: deploy: labels: - "traefik.http.middlewares.anubis.forwardauth.address=http://anubis:8080/.within.website/x/cmd/anubis/api/check" + - "traefik.http.middlewares.anubis.forwardauth.trustForwardHeader=true" anubis: image: "ghcr.io/techarohq/anubis:v1.25.0" environment: -- 2.52.0