-
Notifications
You must be signed in to change notification settings - Fork 158
Description
🐛 Bug Report
Describe the bug
I am not seeing a button for OIDC login, not sure if I have something messed up or if OIDC is fully implemented.
Environment (please complete the following information):
- OS: Unraid Docker Compose
- Browser Chrome
Additional context
Add any other context about the problem here.
my compose:
services:
web:
image: ghcr.io/kanbn/kan:latest
container_name: kan-web
ports:
- "6921:3000"
networks:
- kan-network
environment:
NEXT_PUBLIC_BASE_URL: https://kan.redacted.com
BETTER_AUTH_SECRET: 4yVFT7rredactedHmT
POSTGRES_URL: postgresql://kan:redacted21@postgres:5432/kan_db
BETTER_AUTH_TRUSTED_ORIGINS: https://kan.redacted.com
NEXT_PUBLIC_ALLOW_CREDENTIALS: "false"
#SMTP (optional)
SMTP_HOST: smtp.purelymail.com
SMTP_PORT: 465
SMTP_SECURE: "true"
SMTP_USER: kan@infraredacted.com
SMTP_PASSWORD: hrajhtmdredacteduzyl
EMAIL_FROM: kan@infra.redacted.com
BETTER_AUTH_OIDC_CLIENT_ID: EpbClJ5qqn3afredactedgMmEk8epFdQgh
BETTER_AUTH_OIDC_CLIENT_SECRET: xTAzqQGESPndQNyHlVGk9YsEUredactedLS2SJzoXfAa5NK7x0iLDAiEnqY89k8eTgu3vY6BgnxlxRHz5SuyMczwwiEMHbizZTaWg
BETTER_AUTH_OIDC_ISSUER: https://sso.redacted.com/application/o/kan/.well-known/openid-configuration
BETTER_AUTH_OIDC_REDIRECT_URI: https://kan.redacted.com/api/auth/callback/oidc
NEXT_PUBLIC_DISABLE_SIGN_UP: "true"
NEXT_PUBLIC_AUTH_PROVIDERS: oidc
depends_on:
- postgres
volumes:
- /mnt/user/appdata/kan/kan_config:/app/config
restart: unless-stopped
postgres:
image: postgres:15
container_name: kan-db
environment:
POSTGRES_DB: kan_db
POSTGRES_USER: kan
POSTGRES_PASSWORD: redacted
ports:
- "5432:5432"
volumes:
- /mnt/user/appdata/kan/kan_postgres_data:/var/lib/postgresql/data
restart: unless-stopped
networks:
- kan-network
networks:
kan-network: