mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-26 14:09:43 -08:00
Fixed throttle variables
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
1b6df232aa
commit
791f77f641
|
@ -98,10 +98,12 @@ return [
|
||||||
'email' => 'auth.emails.password',
|
'email' => 'auth.emails.password',
|
||||||
'table' => 'password_resets',
|
'table' => 'password_resets',
|
||||||
'expire' => env('RESET_PASSWORD_LINK_EXPIRES', 900),
|
'expire' => env('RESET_PASSWORD_LINK_EXPIRES', 900),
|
||||||
'throttle' => 60,
|
'throttle' => [
|
||||||
'max_attempts' => env('LOGIN_MAX_ATTEMPTS', 5),
|
'max_attempts' => env('LOGIN_MAX_ATTEMPTS', 5),
|
||||||
|
|
||||||
'lockout_duration' => env('LOGIN_LOCKOUT_DURATION', 60),
|
'lockout_duration' => env('LOGIN_LOCKOUT_DURATION', 60),
|
||||||
|
'password_max_attempts' => env('PASSWORD_MAX_ATTEMPTS', 20),
|
||||||
|
'password_lockout_duration' => env('PASSWORD_LOCKOUT_DURATION', 60),
|
||||||
|
]
|
||||||
|
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue