From ef586bf75276623c07ac7185eb5b9d3152ac7a45 Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Mon, 12 Oct 2020 20:15:12 -0700 Subject: [PATCH] Up the default API throttle for the client API to avoid issues with large numbers of servers --- config/http.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/http.php b/config/http.php index b39845239..ed54e475b 100644 --- a/config/http.php +++ b/config/http.php @@ -13,7 +13,7 @@ return [ */ 'rate_limit' => [ 'client_period' => 1, - 'client' => env('APP_API_CLIENT_RATELIMIT', 240), + 'client' => env('APP_API_CLIENT_RATELIMIT', 720), 'application_period' => 1, 'application' => env('APP_API_APPLICATION_RATELIMIT', 240),