From b3bb43d4ac3ee919fdee547268439513c1812a28 Mon Sep 17 00:00:00 2001 From: naterfute Date: Mon, 7 Apr 2025 01:22:37 -0700 Subject: [PATCH] fix: it's $ not %% --- blueprints/plane/template.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/blueprints/plane/template.toml b/blueprints/plane/template.toml index 858e7c83..25cb8775 100644 --- a/blueprints/plane/template.toml +++ b/blueprints/plane/template.toml @@ -8,8 +8,8 @@ secret_key = "${base64:48}" [config] env = [ -"Domain=${host}", -"WEB_URL=${host}", +"Domain=${main_domain}", +"WEB_URL=${main_domain}", "PGHOST=plane-db", "PGDATABASE=plane", "POSTGRES_USER=${username}", @@ -40,7 +40,7 @@ env = [ "DEBUG=0", "SENTRY_DSN=", "SENTRY_ENVIRONMENT=production", -"CORS_ALLOWED_ORIGINS=%{host}%", +"CORS_ALLOWED_ORIGINS=${main_domain}", "GUNICORN_WORKERS=1", "USE_MINIO=1", "DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@plane-db/plane",