Set higher threshhold, moved throttle settings

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2022-06-21 19:11:39 -07:00
parent 17ee332715
commit 284dbb7553

View file

@ -101,13 +101,21 @@ return [
'throttle' => [
'max_attempts' => env('LOGIN_MAX_ATTEMPTS', 5),
'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