More suggested changes
This commit is contained in:
parent
cdcefe0389
commit
5295e912bb
|
@ -615,18 +615,15 @@ Enable or disable `getmail`.
|
|||
|
||||
##### OAUTH2_CLIENT_ID
|
||||
|
||||
- **empty** => verySecretId
|
||||
- => Specify the OAuth2 client ID
|
||||
|
||||
##### OAUTH2_CLIENT_SECRET
|
||||
|
||||
- **empty** => verySecretSecret
|
||||
- => Specify the OAuth2 client secret
|
||||
|
||||
##### OAUTH2_INTROSPECTION_URL
|
||||
|
||||
- **empty** => https://oauth2.example.com/userinfo/
|
||||
- => Specify the user info endpoint URL of the oauth2 provider. The trailing slash is MANDATORY (at least for Authentik)
|
||||
- => Specify the user info endpoint URL of the oauth2 provider. E.g. `https://oauth2.example.com/userinfo/`, where the trailing slash is MANDATORY (at least for Authentik)
|
||||
#### LDAP
|
||||
|
||||
##### LDAP_START_TLS
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
client_id = verySecretId
|
||||
client_secret = verySecretSecret
|
||||
introspection_url = https://oauth2.example.com/userinfo/
|
||||
client_id =
|
||||
client_secret =
|
||||
introspection_url =
|
||||
|
|
|
@ -62,6 +62,10 @@ function _register_functions() {
|
|||
_register_setup_function '_setup_ldap'
|
||||
;;
|
||||
|
||||
( 'OIDC' )
|
||||
_dms_panic__fail_init 'OIDC user account provisioning - it is not yet implemented'
|
||||
;;
|
||||
|
||||
( * )
|
||||
_dms_panic__invalid_value "'${ACCOUNT_PROVISIONER}' is not a valid value for ACCOUNT_PROVISIONER"
|
||||
;;
|
||||
|
|
Loading…
Reference in New Issue