2
0

🧑‍💻 Add keycloak auth provider (#1533)

#1529
This commit is contained in:
Jeanluca
2024-05-23 10:36:30 -03:00
committed by GitHub
parent 29040c67e1
commit bb4bbd8f0e
13 changed files with 76 additions and 0 deletions

View File

@ -169,6 +169,20 @@ The Authorization callback URL should be `$NEXTAUTH_URL/api/auth/callback/azure-
| AZURE_AD_CLIENT_SECRET | | Application client secret. Can be obtained from Azure Portal. |
| AZURE_AD_TENANT_ID | | Azure Tenant ID |
## Keycloak (Auth)
Used for authenticating with Keycloak.
Follow the official Keycloak guide for creating OAuth2 applications [here](https://www.keycloak.org/).
| Parameter | Default | Description |
| ------------------------ | ------------------ | ------------------------------------------------------------------------------------ |
| KEYCLOAK_CLIENT_ID | | Application client ID. |
| KEYCLOAK_CLIENT_SECRET | | Application secret |
| KEYCLOAK_REALM | | Your Keycloak Realm |
| KEYCLOAK_BASE_URL | | Base URL of the Keycloak instance |
## Custom OAuth Provider (Auth)
| Parameter | Default | Description |