liquidbcn / craftcms-rate-limit
Rate limiting abstraction which, in conjunction with your application's cache, provides an easy way to limit requests during a specified window of time.
Installs: 544
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:craft-plugin
Requires
- craftcms/cms: ^4.2.8
This package is not auto-updated.
Last update: 2025-03-27 21:02:48 UTC
README
This plugin allows you to limit the requests on your site per IP preventing DDOS attacks from bots and people.
Requirements
This plugin requires Craft CMS 4.0.0 or later
Installation
To install the plugin, follow these instructions.
-
Open your terminal and go to your Craft project:
cd /path/to/project
-
Then tell Composer to load the plugin:
composer require liquid/craftcms-rate-limit
-
In the Control Panel, go to Settings → Plugins and click the “Install” button for Rate Limit.
Configuring Rate Limit
You can configure the Rate Limit creating a file under your config folder named rate-limit with this content
<?php
return [
'maxRequestsPerIpPerMinute' => 100,
];
Brought to you by Liquid Studio