From 53886a7cd3d2eaa1cd0b97434aeb23efe3ab4808 Mon Sep 17 00:00:00 2001 From: Brooooooklyn Date: Wed, 4 Sep 2024 08:57:04 +0000 Subject: [PATCH] fix(server): wrong env variable condition in nginx conf (#8084) --- .github/deployment/front/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/deployment/front/nginx.conf b/.github/deployment/front/nginx.conf index b74bf71796..87c196f3d8 100644 --- a/.github/deployment/front/nginx.conf +++ b/.github/deployment/front/nginx.conf @@ -14,7 +14,7 @@ http { include /etc/nginx/conf.d/*.conf; map "${AFFINE_ENV}" $mobile_root { - canary /app/mobile/; + dev /app/mobile/; default /app/dist/; } }