global:
  authProviders:
    oidc:
      issuer: ""
      clientId: ""
      clientSecret: ""
You can configure OIDC authentication using environment variables. This allows you to integrate with identity providers like Google, GitHub, or any other OIDC-compliant provider.

Environment Variables

Configure the following environment variables to set up OIDC authentication:
OIDC_ISSUER_URL
string
required
The URL of your OIDC provider’s issuer (e.g. https://accounts.google.com)
OIDC_CLIENT_ID
string
required
The client ID obtained from your OIDC provider
OIDC_CLIENT_SECRET
string
required
The client secret obtained from your OIDC provider
OIDC_CALLBACK_URL
string
required
The callback URL for your application (e.g. https://your-domain.com/auth/callback)
global:
  authProviders:
    oidc:
      issuer: ""
      clientId: ""
      clientSecret: ""