docs: nextcloud missing oidc scope (#3926)

pull/3930/head
James Elliott 2022-08-30 19:52:00 +10:00 committed by GitHub
parent 61bcdada8d
commit f18585bcd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -62,7 +62,7 @@ $CONFIG = array (
),
'oidc_login_default_group' => 'oidc',
'oidc_login_use_external_storage' => false,
'oidc_login_scope' => 'openid profile groups',
'oidc_login_scope' => 'openid profile email groups',
'oidc_login_proxy_ldap' => false,
'oidc_login_disable_registration' => true,
'oidc_login_redir_fallback' => false,
@ -95,6 +95,7 @@ which will operate with the above example:
scopes:
- openid
- profile
- email
- groups
userinfo_signing_algorithm: none
```