Skip to content

Commit

Permalink
Update rate limit to allow for more requests per windowMs
Browse files Browse the repository at this point in the history
  • Loading branch information
rubentalstra committed Mar 24, 2024
1 parent ef9e11d commit c78b2a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ app.use(setAdminStatus);
var RateLimit = require('express-rate-limit');
var limiter = RateLimit({
windowMs: 15 * 60 * 1000, // 15 minutes
max: 100, // max 100 requests per windowMs
max: 250, // max 100 requests per windowMs
});


Expand Down

0 comments on commit c78b2a1

Please sign in to comment.