From d6e7ba8c93d41531f7f7ef1fd10214d8f339ae5a Mon Sep 17 00:00:00 2001 From: Jake Kasper Date: Thu, 21 Aug 2025 13:24:09 -0500 Subject: [PATCH] update limiter --- backend/src/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/app.js b/backend/src/app.js index 1cbe90f..8fe5c75 100644 --- a/backend/src/app.js +++ b/backend/src/app.js @@ -51,7 +51,7 @@ app.use(limiter); // Stricter rate limiting for auth routes const authLimiter = rateLimit({ windowMs: 15 * 60 * 1000, // 15 minutes - max: 5, // Limit each IP to 5 auth requests per windowMs + max: 50, // Limit each IP to 50 auth requests per windowMs (increased for development) message: 'Too many authentication attempts, please try again later.', standardHeaders: true, legacyHeaders: false,