mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 21:53:08 -06:00
Update LDAP config for #2085
This commit is contained in:
parent
0782354160
commit
19710c3eab
@ -164,7 +164,8 @@ return [
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'domain_controllers' => explode(' ', env('ADLDAP_CONTROLLERS', '127.0.0.1')),
|
//'domain_controllers' => explode(' ', env('ADLDAP_CONTROLLERS', '127.0.0.1')),
|
||||||
|
'hosts' => explode(' ', env('ADLDAP_CONTROLLERS', '127.0.0.1')),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
@ -219,8 +220,10 @@ return [
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'admin_username' => env('ADLDAP_ADMIN_USERNAME', ''),
|
//'admin_username' => env('ADLDAP_ADMIN_USERNAME', ''),
|
||||||
'admin_password' => env('ADLDAP_ADMIN_PASSWORD', ''),
|
//'admin_password' => env('ADLDAP_ADMIN_PASSWORD', ''),
|
||||||
|
'username' => env('ADLDAP_ADMIN_USERNAME', ''),
|
||||||
|
'password' => env('ADLDAP_ADMIN_PASSWORD', ''),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
@ -77,6 +77,21 @@ return [
|
|||||||
|
|
||||||
'provider' => Adldap\Laravel\Auth\DatabaseUserProvider::class,
|
'provider' => Adldap\Laravel\Auth\DatabaseUserProvider::class,
|
||||||
//'provider' => Adldap\Laravel\Auth\NoDatabaseUserProvider::class,
|
//'provider' => Adldap\Laravel\Auth\NoDatabaseUserProvider::class,
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Model
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The model to utilize for authentication and importing.
|
||||||
|
|
|
||||||
|
| This option is only applicable to the DatabaseUserProvider.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'model' => FireflyIII\User::class,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Rules
|
| Rules
|
||||||
|
Loading…
Reference in New Issue
Block a user