From 963d72ddcd605bb5c38c45a8f615328cd42af6aa Mon Sep 17 00:00:00 2001 From: Yana De Pauw Date: Thu, 19 Nov 2020 12:11:40 +0100 Subject: [PATCH] 74348: Increase ratelimiter to 500 --- src/environments/environment.common.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/environments/environment.common.ts b/src/environments/environment.common.ts index a7c8b2a5ff..eb961a38eb 100644 --- a/src/environments/environment.common.ts +++ b/src/environments/environment.common.ts @@ -13,10 +13,10 @@ export const environment: GlobalConfig = { port: 4000, // NOTE: Space is capitalized because 'namespace' is a reserved string in TypeScript nameSpace: '/', - // The rateLimiter settings limit each IP to a "max" of 120 requests per "windowMs" (1 minute). + // The rateLimiter settings limit each IP to a "max" of 500 requests per "windowMs" (1 minute). rateLimiter: { windowMs: 1 * 60 * 1000, // 1 minute - max: 120 // limit each IP to 120 requests per windowMs + max: 500 // limit each IP to 500 requests per windowMs } }, // The REST API server settings.