Skip to content
Snippets Groups Projects

Resolve "[OAuth] .well-known must be mounted under /"

Merged Tom Teichler requested to merge 606-oauth-well-known-must-be-mounted-under into master
1 file
+ 1
4
Compare changes
  • Side-by-side
  • Inline
+ 1
4
@@ -390,6 +390,7 @@ OAUTH2_PROVIDER = {
"SCOPES_BACKEND_CLASS": "aleksis.core.util.auth_helpers.AppScopes",
"OAUTH2_VALIDATOR_CLASS": "aleksis.core.util.auth_helpers.CustomOAuth2Validator",
"OIDC_ENABLED": True,
"OIDC_ISS_ENDPOINT": BASE_URL,
"REFRESH_TOKEN_EXPIRE_SECONDS": _settings.get("oauth2.token_expiry", 86400),
"PKCE_REQUIRED": False,
}
@@ -416,10 +417,6 @@ elif _OIDC_RSA_KEY:
with open(_OIDC_RSA_KEY, "r") as f:
OAUTH2_PROVIDER["OIDC_RSA_PRIVATE_KEY"] = f.read()
OAUTH2_PROVIDER["OIDC_ISS_ENDPOINT"] = _settings.get(
"http.base_url", "http://localhost:8000" if DEBUG else f"https://{ALLOWED_HOSTS[0]}"
)
# Configuration for REST framework
REST_FRAMEWORK = {
"DEFAULT_AUTHENTICATION_CLASSES": [
Loading