mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-22 12:55:14 +08:00
Merge branch 'ivir-authncontext' of https://github.com/ivir/BookStack into ivir-ivir-authncontext
This commit is contained in:
commit
b8e2d75014
|
@ -223,6 +223,12 @@ SAML2_ONELOGIN_OVERRIDES=null
|
|||
SAML2_DUMP_USER_DETAILS=false
|
||||
SAML2_AUTOLOAD_METADATA=false
|
||||
|
||||
# SAML Authentication context.
|
||||
# Set to false and no AuthContext will be sent in the AuthNRequest,
|
||||
# Set true and you will get an AuthContext 'exact' 'urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport'
|
||||
# Set an array with the possible auth context values: array ('urn:oasis:names:tc:SAML:2.0:ac:classes:Password', 'urn:oasis:names:tc:SAML:2.0:ac:classes:X509'),
|
||||
SAML2_IDP_AUTHNCONTEXT=false
|
||||
|
||||
# SAML group sync configuration
|
||||
# Refer to https://www.bookstackapp.com/docs/admin/saml2-auth/
|
||||
SAML2_USER_TO_GROUPS=false
|
||||
|
|
|
@ -139,6 +139,12 @@ return [
|
|||
// )
|
||||
// ),
|
||||
],
|
||||
'security' => [
|
||||
// Specifies Authentication context
|
||||
// false means that IDP choose authentication method
|
||||
// null force Form based authentication or is possible set via array supported methods. See to onelogin/php-sampl/advance_settings
|
||||
'requestedAuthnContext' => env('SAML2_IDP_AUTHNCONTEXT',false),
|
||||
],
|
||||
],
|
||||
|
||||
];
|
||||
|
|
Loading…
Reference in New Issue
Block a user