forked from hippoz/brainlet
make rate limit more permissive
This commit is contained in:
parent
1e935b03df
commit
c0d4ec680d
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ const rateLimit = require("express-rate-limit");
|
|||
|
||||
const createLimiter = rateLimit({
|
||||
windowMs: 2 * 60 * 1000,
|
||||
max: 3,
|
||||
max: 10,
|
||||
});
|
||||
|
||||
app.post('/category/create', [
|
||||
|
|
|
@ -18,7 +18,7 @@ const rateLimit = require("express-rate-limit");
|
|||
|
||||
const createAccountLimiter = rateLimit({
|
||||
windowMs: 60 * 60 * 1000, // 1 hour window
|
||||
max: 5, // start blocking after 5 requests
|
||||
max: 10, // start blocking after 5 requests
|
||||
message: "You are being rate limited"
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue