-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Be consistent about issuer instead of domain
The variable is supposed to contains `https://`
- Loading branch information
1 parent
2542e1e
commit 468e471
Showing
4 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,17 +73,17 @@ | |
SESSION_COOKIE_SAMESITE = None | ||
ADMINS = (("dotKom", "[email protected]"),) | ||
|
||
AUTH0_DOMAIN = env["AUTH0_ISSUER"] | ||
AUTH0_ISSUER = env["AUTH0_ISSUER"] | ||
AUTH0_CLIENT_ID = env["AUTH0_CLIENT_ID"] | ||
AUTH0_CLIENT_SECRET = env["AUTH0_CLIENT_SECRET"] | ||
|
||
# this OIDC is for non-API-auth | ||
OIDC_OP_JWKS_ENDPOINT = f"{AUTH0_DOMAIN}/.well-known/jwks.json" | ||
OIDC_OP_JWKS_ENDPOINT = f"{AUTH0_ISSUER}/.well-known/jwks.json" | ||
OIDC_RP_CLIENT_ID = AUTH0_CLIENT_ID | ||
OIDC_RP_CLIENT_SECRET = AUTH0_CLIENT_SECRET | ||
OIDC_OP_AUTHORIZATION_ENDPOINT = f"{AUTH0_DOMAIN}/authorize" | ||
OIDC_OP_TOKEN_ENDPOINT = f"{AUTH0_DOMAIN}/oauth/token" | ||
OIDC_OP_USER_ENDPOINT = f"{AUTH0_DOMAIN}/userinfo" | ||
OIDC_OP_AUTHORIZATION_ENDPOINT = f"{AUTH0_ISSUER}/authorize" | ||
OIDC_OP_TOKEN_ENDPOINT = f"{AUTH0_ISSUER}/oauth/token" | ||
OIDC_OP_USER_ENDPOINT = f"{AUTH0_ISSUER}/userinfo" | ||
|
||
|
||
# Override "spam-settings" for django-wiki | ||
|