mirror of
https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker.git
synced 2025-09-02 18:50:13 +00:00
Update globalblacklist.template
Ref #568 Modify template for Super Rate Limiting Function
This commit is contained in:
parent
e67b18011f
commit
3a74c7bbe7
1 changed files with 21 additions and 10 deletions
|
@ -19347,18 +19347,28 @@ geo $ratelimited {
|
||||||
# ============================================
|
# ============================================
|
||||||
|
|
||||||
# --------------------------------------------
|
# --------------------------------------------
|
||||||
# 1. MAP BAD BOTS TO OUR RATE LIMITER FUNCTION
|
# 4.1. MAP BAD BOTS TO OUR RATE LIMITER FUNCTION
|
||||||
# --------------------------------------------
|
# --------------------------------------------
|
||||||
|
|
||||||
map $bad_bot $bot_iplimit {
|
map $bad_bot $bot_iplimit {
|
||||||
0 "";
|
0 "";
|
||||||
1 "";
|
1 "";
|
||||||
2 $binary_remote_addr;
|
2 $binary_remote_addr;
|
||||||
4 $binary_remote_addr;
|
4 "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# --------------------------------------------------
|
||||||
|
# 4.2. MAP BAD BOTS TO OUR SUPER RATE LIMITER FUNCTION
|
||||||
|
# --------------------------------------------------
|
||||||
|
|
||||||
|
map $bad_bot $bot_iplimit2 {
|
||||||
|
0 "";
|
||||||
|
1 "";
|
||||||
|
2 "";
|
||||||
|
4 $binary_remote_addr;
|
||||||
|
}
|
||||||
# --------------------------
|
# --------------------------
|
||||||
# 2. SET RATE LIMITING ZONES
|
# 4.3. SET RATE LIMITING ZONES
|
||||||
# --------------------------
|
# --------------------------
|
||||||
|
|
||||||
# BAD BOT RATE LIMITING ZONE
|
# BAD BOT RATE LIMITING ZONE
|
||||||
|
@ -19370,8 +19380,9 @@ geo $ratelimited {
|
||||||
# BAD BOT SUPER RATE LIMITING ZONE
|
# BAD BOT SUPER RATE LIMITING ZONE
|
||||||
# Super Rate limiting will only take effect if on any User-Agents with a value of 4
|
# Super Rate limiting will only take effect if on any User-Agents with a value of 4
|
||||||
|
|
||||||
limit_conn_zone $bot_iplimit zone=bot4_connlimit:16m;
|
limit_conn_zone $bot_iplimit2 zone=bot4_connlimit:16m;
|
||||||
limit_req_zone $bot_iplimit zone=bot4_reqlimitip:16m rate=1r/m;
|
limit_req_zone $bot_iplimit2 zone=bot4_reqlimitip:16m rate=1r/m;
|
||||||
|
|
||||||
|
|
||||||
# ==========================================
|
# ==========================================
|
||||||
# END SECTION 4 - ACTIVATE BLOCKER FUNCTIONS
|
# END SECTION 4 - ACTIVATE BLOCKER FUNCTIONS
|
||||||
|
|
Loading…
Add table
Reference in a new issue