Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/config/http.php
7382 views
1
<?php
2
3
return [
4
/*
5
|--------------------------------------------------------------------------
6
| API Rate Limits
7
|--------------------------------------------------------------------------
8
|
9
| Defines the rate limit for the number of requests per minute that can be
10
| executed against both the client and internal (application) APIs over the
11
| defined period (by default, 1 minute).
12
|
13
*/
14
'rate_limit' => [
15
'client_period' => 1,
16
'client' => env('APP_API_CLIENT_RATELIMIT', 720),
17
18
'application_period' => 1,
19
'application' => env('APP_API_APPLICATION_RATELIMIT', 240),
20
],
21
];
22
23