From 7e1a136c34cb59d3797e1840462671b694f9afb1 Mon Sep 17 00:00:00 2001 From: naterfute Date: Tue, 8 Apr 2025 10:36:25 -0700 Subject: [PATCH] fix: CORS_ALLOWED_ORIGINS not being https --- blueprints/plane/template.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprints/plane/template.toml b/blueprints/plane/template.toml index 9e67f39a..a12f4564 100644 --- a/blueprints/plane/template.toml +++ b/blueprints/plane/template.toml @@ -40,7 +40,7 @@ env = [ "DEBUG=0", "SENTRY_DSN=", "SENTRY_ENVIRONMENT=production", -"CORS_ALLOWED_ORIGINS=${Domain}", +"CORS_ALLOWED_ORIGINS=https://${Domain}", "GUNICORN_WORKERS=1", "USE_MINIO=1", "DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@plane-db/plane",