From ddc8fe82419d7983a1ddfdadc8173179b60b1e96 Mon Sep 17 00:00:00 2001 From: Slawomir Koszewski Date: Fri, 27 Feb 2026 13:14:30 +0100 Subject: [PATCH] fix: enable SSL when OAuth is used in entrypoint script --- entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index fcce738..5ccb02f 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -97,7 +97,8 @@ while [[ $# -gt 0 ]]; do --oauth) OAUTH_ARGS=("--oauth" "basic") # Ensure Caddy is disabled when using OAuth, as Azurite does not support OAuth behind a reverse proxy. - CADDY="" + CADDY="" + AZURITE_SSL=true shift ;; --ssl)