mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
22 lines
709 B
Text
22 lines
709 B
Text
# Type of Autorizarions
|
|
SIMPLE_LOGIN_ACTIVE=false
|
|
OAUTH_ACTIVE=false
|
|
OIDC_ACTIVE=false
|
|
|
|
# Configuration Simple Login
|
|
SESSION_SECRET=your_session_secret
|
|
|
|
# Configuration OAuth
|
|
OAUTH_AUTHORIZATION_URL=https://www.testurl.com/oauth2/authorize
|
|
OAUTH_TOKEN_URL=https://www.testurl.com/oauth2/token
|
|
OAUTH_CLIENT_ID=your_oauth_client_id
|
|
OAUTH_CLIENT_SECRET=your_oauth_client_secret
|
|
OAUTH_CALLBACK_URL=https://localhost:3000/auth/provider/callback
|
|
OAUTH_ADD_SCOPE=scopes
|
|
OAUTH_ROLE_TEACHER_VALUE=teacher-claim-value
|
|
|
|
# Configuration OIDC
|
|
OIDC_CLIENT_ID=your_oidc_client_id
|
|
OIDC_CLIENT_SECRET=your_oidc_client_secret
|
|
OIDC_ISSUER_URL=https://your-issuer.com
|
|
OIDC_CALLBACK_URL=http://localhost:3000/auth/oidc/callback
|