mirror of
https://github.com/pelican-dev/panel.git
synced 2026-05-04 18:00:48 +03:00
Co-authored-by: DaneEveritt <dane@daneeveritt.com> Co-authored-by: danny6167 <danielb@purpleflaghosting.com> Co-authored-by: MrSoulPenguin <28676680+MrSoulPenguin@users.noreply.github.com>
22 lines
652 B
PHP
22 lines
652 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| API Rate Limits
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Defines the rate limit for the number of requests per minute that can be
|
|
| executed against both the client and internal (application) APIs over the
|
|
| defined period (by default, 1 minute).
|
|
|
|
|
*/
|
|
'rate_limit' => [
|
|
'client_period' => 1,
|
|
'client' => env('APP_API_CLIENT_RATELIMIT', 256),
|
|
|
|
'application_period' => 1,
|
|
'application' => env('APP_API_APPLICATION_RATELIMIT', 256),
|
|
],
|
|
];
|