From f573e639ac2992d8b4df3453fec53875d1faeae8 Mon Sep 17 00:00:00 2001 From: Bryan Frimin Date: Fri, 14 Nov 2025 12:46:34 +0100 Subject: [PATCH] Fix missing AUTH_COOKIE_SECURE implementation Signed-off-by: Bryan Frimin --- entrypoint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/entrypoint.sh b/entrypoint.sh index 4fbbf8474..db8cb0be2 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -107,6 +107,7 @@ EOF domain: "${AUTH_COOKIE_DOMAIN:-localhost}" secret: "${AUTH_COOKIE_SECRET:?AUTH_COOKIE_SECRET is required}" duration: ${AUTH_COOKIE_DURATION:-24} + secure: ${AUTH_COOKIE_SECURE:-true} password: pepper: "${AUTH_PASSWORD_PEPPER:?AUTH_PASSWORD_PEPPER is required}" iterations: ${AUTH_PASSWORD_ITERATIONS:-1000000}