chore: rate limit anonymous requests to 2rpm

This commit is contained in:
Yanlong Wang 2025-03-18 21:19:56 +08:00
parent f8decb037e
commit 7b64dde592
No known key found for this signature in database
GPG Key ID: C0A623C0BADF9F37

View File

@ -110,7 +110,7 @@ export const jinaAiMiddleware = (req: Request, res: Response, next: NextFunction
} else {
rateLimitPolicy = [
RateLimitDesc.from({
occurrence: 3,
occurrence: 2,
periodSeconds: 60
})
]