2020-03-10 22:57:19 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
2022-03-03 18:59:46 -06:00
|
|
|
|
2020-03-10 22:57:19 -04:00
|
|
|
'throttle' => [
|
|
|
|
/*
|
2022-03-03 18:59:46 -06:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Enable throttling of Backend authentication attempts
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| If set to true, users will be given a limited number of attempts to sign
|
|
|
|
| in to the Backend before being blocked for a specified number of minutes.
|
|
|
|
|
|
|
|
|
*/
|
2020-03-10 22:57:19 -04:00
|
|
|
'enabled' => true,
|
2022-03-03 18:59:46 -06:00
|
|
|
|
2020-03-10 22:57:19 -04:00
|
|
|
/*
|
2022-03-03 18:59:46 -06:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Failed Authentication Attempt Limit
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Number of failed attempts allowed while trying to authenticate a user.
|
|
|
|
|
|
|
|
|
*/
|
2020-03-10 22:57:19 -04:00
|
|
|
'attemptLimit' => 5,
|
2022-03-03 18:59:46 -06:00
|
|
|
|
2020-03-10 22:57:19 -04:00
|
|
|
/*
|
2022-03-03 18:59:46 -06:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Suspension Time
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The number of minutes to suspend further attempts on authentication once
|
|
|
|
| the attempt limit is reached.
|
|
|
|
|
|
|
|
|
*/
|
2020-03-10 22:57:19 -04:00
|
|
|
'suspensionTime' => 15,
|
|
|
|
],
|
2022-03-03 18:59:46 -06:00
|
|
|
|
2020-03-10 22:57:19 -04:00
|
|
|
];
|