You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Set to true to automatically redirect to the OpenID provider when a user visits the login page
444
449
# This will bypass the login form completely for users, only use this if OpenID is your only authentication method
445
450
OPENID_AUTO_REDIRECT=false
451
+
# Set to true to use PKCE (Proof Key for Code Exchange) for OpenID authentication
452
+
OPENID_USE_PKCE=false
453
+
#Set to true to reuse openid tokens for authentication management instead of using the mongodb session and the custom refresh token.
454
+
OPENID_REUSE_TOKENS=
455
+
#By default, signing key verification results are cached in order to prevent excessive HTTP requests to the JWKS endpoint.
456
+
#If a signing key matching the kid is found, this will be cached and the next time this kid is requested the signing key will be served from the cache.
457
+
#Default is true.
458
+
OPENID_JWKS_URL_CACHE_ENABLED=
459
+
OPENID_JWKS_URL_CACHE_TIME=# 600000 ms eq to 10 minutes leave empty to disable caching
460
+
#Set to true to trigger token exchange flow to acquire access token for the userinfo endpoint.
461
+
OPENID_ON_BEHALF_FLOW_FOR_USERINFO_REQUIRED=
462
+
OPENID_ON_BEHALF_FLOW_USERINFO_SCOPE="user.read"# example for Scope Needed for Microsoft Graph API
463
+
# Set to true to use the OpenID Connect end session endpoint for logout
464
+
OPENID_USE_END_SESSION_ENDPOINT=
465
+
466
+
467
+
# SAML
468
+
# Note: If OpenID is enabled, SAML authentication will be automatically disabled.
469
+
SAML_ENTRY_POINT=
470
+
SAML_ISSUER=
471
+
SAML_CERT=
472
+
SAML_CALLBACK_URL=/oauth/saml/callback
473
+
SAML_SESSION_SECRET=
474
+
475
+
# Attribute mappings (optional)
476
+
SAML_EMAIL_CLAIM=
477
+
SAML_USERNAME_CLAIM=
478
+
SAML_GIVEN_NAME_CLAIM=
479
+
SAML_FAMILY_NAME_CLAIM=
480
+
SAML_PICTURE_CLAIM=
481
+
SAML_NAME_CLAIM=
482
+
483
+
# Logint buttion settings (optional)
484
+
SAML_BUTTON_LABEL=
485
+
SAML_IMAGE_URL=
486
+
487
+
# Whether the SAML Response should be signed.
488
+
# - If "true", the entire `SAML Response` will be signed.
489
+
# - If "false" or unset, only the `SAML Assertion` will be signed (default behavior).
0 commit comments