From 79200a4aa20da38feaf621adcb41e21813867521 Mon Sep 17 00:00:00 2001 From: xeruf <27jf@pm.me> Date: Sun, 15 Sep 2024 18:35:21 +0300 Subject: [PATCH] apps/meet/calcom/calcom-keys: fix allowed hostnames --- apps/meet/calcom/calcom-keys.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/meet/calcom/calcom-keys.yaml b/apps/meet/calcom/calcom-keys.yaml index 0e685cd..146193a 100644 --- a/apps/meet/calcom/calcom-keys.yaml +++ b/apps/meet/calcom/calcom-keys.yaml @@ -5,9 +5,9 @@ metadata: namespace: stackspout stringData: DATABASE_URL: "postgresql://calcom:${postgresql_password}@calcom-postgresql/calcom" - ALLOWED_HOSTNAMES: "'${calcom_domain}'" + ALLOWED_HOSTNAMES: "${calcom_domain}" NEXT_PUBLIC_WEBAPP_URL: "https://${calcom_domain}" - NEXT_PUBLIC_API_V2_URL: "https://${calcom_domain}/api/v2" + #NEXT_PUBLIC_API_V2_URL: "https://${calcom_domain}/api/v2" NEXTAUTH_SECRET: "${nextauth_secret}" CALENDSO_ENCRYPTION_KEY: "${calendso_key}" EMAIL_FROM: "${outgoing_mail_from_address}"