What can be done to increase the request limit if the user continues to hit rate limits?
This is my current rate limiter setup:
const Limiter = rateLimit({
windowMs: 10000,
max: 5,
standardHeaders: true,
legacyHeaders: false,
keyGenerator: function (req) { return req.ip; },
message: async (req, res) => {res.render("429", {message: `IP ${req.ip} was rate limited.`}) }
})
I attempted to research on Google for a solution but unfortunately found no relevant information.