1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 12:12:48 +01:00

update: auth.php config

- add rate limiting to avoid abuse
This commit is contained in:
HDVinnie 2021-10-18 21:16:54 -04:00 committed by GitHub
parent 3e86707f9f
commit 49038a0c17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,11 +104,13 @@ return [
'provider' => 'users', 'provider' => 'users',
'table' => 'password_resets', 'table' => 'password_resets',
'expire' => 60, 'expire' => 60,
'throttle' => 60,
], ],
'clients' => [ 'clients' => [
'provider' => 'clients', 'provider' => 'clients',
'table' => 'password_resets', 'table' => 'password_resets',
'expire' => 60, 'expire' => 60,
'throttle' => 60,
], ],
], ],