Add .env.sample for OIDC configuration

This commit is contained in:
Nikholas Pcenicni
2026-02-17 02:02:15 -05:00
parent f1ad4bb441
commit bbea917ef7

View File

@@ -0,0 +1,9 @@
OIDC_CLIENT_ID=your_oidc_client_id
OIDC_CLIENT_SECRET=your_oidc_client_secret
OIDC_ISSUER_URL=https://your-oidc-provider.com/application/o/termix/ # The base URL of your OIDC provider for this application. This is used to discover the authorization, token, and userinfo endpoints. It should end with a slash.
OIDC_AUTHORIZATION_URL=https://your-oidc-provider.com/application/o/authorize
OIDC_TOKEN_URL=https://your-oidc-provider.com/application/o/token
OIDC_USERINFO_URL=https://your-oidc-provider.com/application/o/userinfo
OIDC_IDENTIFIER_PATH=sub # The path in the OIDC userinfo response that contains the unique user identifier (default is 'sub')
OIDC_NAME_PATH=name # The path in the OIDC userinfo response that contains the user's display name (default is 'name')
OIDC_SCOPES=openid profile email