mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Set higher threshhold, moved throttle settings
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
17ee332715
commit
284dbb7553
|
@ -101,13 +101,21 @@ return [
|
||||||
'throttle' => [
|
'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),
|
|
||||||
]
|
]
|
||||||
|
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
||||||
|
'password_reset' => [
|
||||||
|
'throttle' => [
|
||||||
|
'max_attempts' => env('PASSWORD_MAX_ATTEMPTS', 10),
|
||||||
|
'lockout_duration' => env('PASSWORD_LOCKOUT_DURATION', 60),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Password Confirmation Timeout
|
| Password Confirmation Timeout
|
||||||
|
|
Loading…
Reference in a new issue