File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ NEXTAUTH_CLIENT_SECRET="KEYCLOAK_SECRET"
1414NEXTAUTH_SECRET = " NEXTAUTH_SECRET"
1515NEXTAUTH_ISSUER = " http://localhost:8085/realms/orchestrator"
1616NEXTAUTH_WELL_KNOWN_OVERRIDE = " http://localhost:8085/auth/.well-known/openid-configuration"
17- NEXTATHU_AUTHORIZATION_SCOPE = " openid profile"
17+ NEXTAUTH_AUTHORIZATION_SCOPE_OVERRIDE = " openid profile"
1818NEXTAUTH_URL = http://localhost:3000/api/auth
1919
2020# docker-compose variables
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ const wfoProvider: OAuthConfig<WfoUserProfile> = {
2323 `${ process . env . NEXTAUTH_ISSUER || '' } /.well-known/openid-configuration` ,
2424 authorization : {
2525 params : {
26- scope : process . env . NEXTAUTH_AUTHORIZATION_SCOPE ?? 'openid profile' ,
26+ scope : process . env . NEXTAUTH_AUTHORIZATION_SCOPE_OVERRIDE ?? 'openid profile' ,
2727 } ,
2828 } ,
2929 idToken : true ,
You can’t perform that action at this time.
0 commit comments