Register SSO middleware if enabled in configuration

This commit is contained in:
bpatath
2020-05-21 20:20:46 +02:00
parent 1eda806c17
commit 7b1380366b
3 changed files with 12 additions and 0 deletions

View File

@@ -217,6 +217,12 @@ return [
| Windows Authentication Middleware (SSO)
|--------------------------------------------------------------------------
|
| Enabled:
|
| The middleware will be registered only if enabled is set to true.
| If you update this file, beware, this is not a standard
| AdLdap2-Laravel configuration key.
|
| Locate Users By:
|
| This value is the users attribute you would like to locate LDAP
@@ -239,6 +245,7 @@ return [
*/
'windows' => [
'enabled' => envNonEmpty('WINDOWS_SSO_ENABLED', false),
'locate_users_by' => envNonEmpty('WINDOWS_SSO_DISCOVER', 'samaccountname'),
'server_key' => envNonEmpty('WINDOWS_SSO_KEY', 'AUTH_USER'),
],