less aggressive auth rate limiting

This commit is contained in:
Alex Holliday
2025-07-28 13:48:09 -07:00
parent ec99b5e9b4
commit 6025323c4b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ export const generalApiLimiter = rateLimit({
export const authApiLimiter = rateLimit({
window: 60 * 1000,
limit: 5,
limit: 15,
standardHeaders: true,
legacyHeaders: false,
ipv6Subnet: 64,
@@ -28,7 +28,7 @@ class SuperSimpleQueue {
// storeType: "redis",
logLevel: "debug",
debug: true,
dbUri: this.appSettings.dbConnectionString,
// dbUri: this.appSettings.dbConnectionString,
});
this.scheduler.start();