Project

General

Profile

Actions

Docs ModEvasive » History » Revision 16

« Previous | Revision 16/18 (diff) | Next »
gaborca, 2020-09-21 15:12


Limit Connections

Module: mod_evasive

Description

mod_evasive is a very simplistic module to limit connections per IP.

Options

evasive.max-conns-per-ip

limits the number of connections per IP.

evasive.max-conns-per-ip = 3

You may also want to set up conditionals :

    evasive.max-conns-per-ip = 1

    $HTTP["host"] == "example.com" {
      evasive.max-conns-per-ip = 2
    }
    $HTTP["host"] == "example2.com" {
      evasive.max-conns-per-ip = 0
    }

0 means unlimited.
In this case, default sites get 1 connections, example.com 2 and example2.com unlimited.

evasive.silent

doesn't log blocked ips in error.log if enabled.

evasive.silent = "enable" 

Updated by gaborca over 3 years ago · 16 revisions