From cf07ceb67e3d14ef3411faccb53783b53c002f71 Mon Sep 17 00:00:00 2001 From: Andrew Hunter Date: Tue, 27 Jan 2026 15:07:52 -0500 Subject: [PATCH] :wrench:(docker) Fix incorrect env variable Incorrect capitalization prevents correct MEET_HOST variable subsitution. --- env.d/production.dist/common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env.d/production.dist/common b/env.d/production.dist/common index b5acbf73..769d9693 100644 --- a/env.d/production.dist/common +++ b/env.d/production.dist/common @@ -20,7 +20,7 @@ DJANGO_EMAIL_FROM= #DJANGO_EMAIL_USE_SSL=true # A flag to enable or disable SSL for email sending. DJANGO_EMAIL_BRAND_NAME="La Suite Numérique" -DJANGO_EMAIL_LOGO_IMG="https://${meet_HOST}/assets/logo-suite-numerique.png" +DJANGO_EMAIL_LOGO_IMG="https://${MEET_HOST}/assets/logo-suite-numerique.png" # Backend url MEET_BASE_URL="https://${MEET_HOST}"