diff options
-rw-r--r-- | conf/.env | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -39,11 +39,11 @@ INSIGHTS_DATABASE_URL= # - SHARED ************************************************************************************************** # Set this to http://app.cal.local:3000 if you want to enable organizations, and # check variable ORGANIZATIONS_ENABLED at the bottom of this file -NEXT_PUBLIC_WEBAPP_URL='http://localhost:__PORT__' +NEXT_PUBLIC_WEBAPP_URL='http://127.0.0.1:__PORT__' # Change to 'http://localhost:3001' if running the website simultaneously -NEXT_PUBLIC_WEBSITE_URL='http://localhost:3000' -NEXT_PUBLIC_CONSOLE_URL='http://localhost:3004' -NEXT_PUBLIC_EMBED_LIB_URL='http://localhost:3000/embed/embed.js' +NEXT_PUBLIC_WEBSITE_URL='http://127.0.0.1:__PORT__' +NEXT_PUBLIC_CONSOLE_URL='http://127.0.0.1:3004' +NEXT_PUBLIC_EMBED_LIB_URL='http://127.0.0.1:3000/embed/embed.js' # To enable SAML login, set both these variables # @see https://github.com/calcom/cal.com/tree/main/packages/features/ee#setting-up-saml-login @@ -62,7 +62,7 @@ SAML_CLIENT_SECRET_VERIFIER= PGSSLMODE= # Define which hostnames are expected for the app to work on -ALLOWED_HOSTNAMES='"cal.com","cal.dev","cal-staging.com","cal.community","cal.local:3000","localhost:3000"' +ALLOWED_HOSTNAMES='"__DOMAIN__","cal.dev","cal-staging.com","cal.community","cal.local:3000","127.0.0.1:__PORT__"' # Reserved orgs subdomains for our own usage RESERVED_SUBDOMAINS='"app","auth","docs","design","console","go","status","api","saml","www","matrix","developer","cal","my","team","support","security","blog","learn","admin"' @@ -78,7 +78,7 @@ NEXTAUTH_SECRET=__KEY__ NEXTAUTH_COOKIE_DOMAIN= # Set this to '1' if you don't want Cal to collect anonymous usage -CALCOM_TELEMETRY_DISABLED= +CALCOM_TELEMETRY_DISABLED=1 # ApiKey for cronjobs CRON_API_KEY='0cc0e6c35519bba620c9360cfe3e68d0' |