Nginx で fail2ban を使用するにはどうすればいいですか?

Nginx で fail2ban を使用するにはどうすればいいですか?

Nginx サーバーで fail2ban を使用するにはどうすればよいですか? jails.conf に設定するルールは何ですか?

答え1

以下から始めてください http://snippets.aktagon.com/snippets/554-Fail2Ban による nginx サーバーのセキュリティ保護方法

/etc/fail2ban/nginx-dos.conf の新しいフィルター:

# Fail2Ban configuration file
#
# Generated on Fri Jun 08 12:09:15 EST 2012 by BeezNest
#
# Author: Yannick Warnir
#
# $Revision: 1 $
#

[Definition]
# Option:  failregex
# Notes.:  Regexp to catch a generic call from an IP address.
# Values:  TEXT
#
failregex = ^<HOST> -.*"(GET|POST).*HTTP.*"$

# Option:  ignoreregex
# Notes.:  regex to ignore. If this regex matches, the line is ignored.
# Values:  TEXT
#
ignoreregex =

jail.local には、次の内容が含まれています (ファイルの末尾に)。

[nginx-dos]
# Based on apache-badbots but a simple IP check (any IP requesting more than
# 240 pages in 60 seconds, or 4p/s average, is suspicious)
# Block for two full days.
# @author Yannick Warnier
enabled = true
port    = http,8090
filter  = nginx-dos
logpath = /var/log/nginx/*-access.log
findtime = 60
bantime  = 172800
maxretry = 240

もちろん、サイトのすべてのリソース (画像、CSS、JS など) をログに記録する場合、通常のユーザーとしてそれらの数値にアクセスするのは非常に簡単です。これを回避するには、次のように Nginx の access_log off ディレクティブを使用します。

 # Serve static files directly
        location ~* \.(png|jpe?g|gif|ico)$ {
                expires 1y;
                access_log off;
                try_files $uri $uri/ @rewrite;
                gzip off;
        }
        location ~* \.(mp3)$ {
                expires 1y;
                access_log off;
                gzip off;
        }
        location ~* \.(css)$ {
                expires 1d;
                access_log off;
        }
        location ~* \.(js)$ {
                expires 1h;
                access_log off;
        }

関連情報