22 lines
646 B
Bash
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
|