How to change ratelimit in strapi v4?

I found it:

// path: ./config/plugins.js

module.exports = ({ env }) => ({
  'users-permissions': {
    config: {
      ratelimit: {
        interval: 60000,
        max: 100000
      }
    }
  }
});
4 Likes