Files
cal-diy-oidc/portainer.env.example
ZachariahSharma 0cba09ddb4
Create PR containing updated CHANGELOG.md and release packages to NPM once PR is merged / Release (push) Has been cancelled
Run i18n AI automation / Run i18n (push) Has been cancelled
Next.js Bundle Analysis / analyze (push) Has been cancelled
Fix scheduler auth redirects
2026-06-15 10:22:41 -06:00

22 lines
646 B
Bash

# Required public URL settings
NEXTAUTH_URL=https://cal.example.com
NEXTAUTH_COOKIE_DOMAIN=
SCHEDULER_PORT=3030
# Required secrets
POSTGRES_PASSWORD=replace-with-a-long-random-password
NEXTAUTH_SECRET=replace-with-openssl-rand-base64-32
CALENDSO_ENCRYPTION_KEY=replace-with-openssl-rand-base64-24
# Authentik OIDC
AUTHENTIK_ISSUER=https://auth.example.com/application/o/cal/
AUTHENTIK_CLIENT_ID=replace-with-authentik-client-id
AUTHENTIK_CLIENT_SECRET=replace-with-authentik-client-secret
# Database
POSTGRES_USER=calcom
POSTGRES_DB=calcom
# Keep SCHEDULER_DEMO_MODE=0 in production: demo mode bypasses Authentik login.
SCHEDULER_DEMO_MODE=0