"अगर" निर्देश का उपयोग करने से बचना वास्तव में बेहतर है। जब सीमा में key_req_zone (और limit_conn_zone) खाली है तो सीमाएं लागू नहीं होती हैं। आप मैप्स और जियो मॉड्यूल्स के साथ मिलकर इसका इस्तेमाल कर सकते हैं ताकि IPs का व्हाइटलाइट बनाया जा सके जहां थ्रॉटल लिमिट लागू नहीं है।
यह उदाहरण दिखाता है कि कैसे एक आईपी से समवर्ती अनुरोधों और अनुरोध दर दोनों के लिए एक सीमा को कॉन्फ़िगर किया जाए।
http {
geo $whitelist {
default 0;
# CIDR in the list below are not limited
1.2.3.0/24 1;
9.10.11.12/32 1;
127.0.0.1/32 1;
}
map $whitelist $limit {
0 $binary_remote_addr;
1 "";
}
# The directives below limit concurrent connections from a
# non-whitelisted IP address to five
limit_conn_zone $limit zone=connlimit:10m;
limit_conn connlimit 5;
limit_conn_log_level warn; # logging level when threshold exceeded
limit_conn_status 503; # the error code to return
# The code below limits the number requests from a non-whitelisted IP
# to one every two seconds with up to 3 requests per IP delayed
# until the average time between responses reaches the threshold.
# Further requests over and above this limit will result
# in an immediate 503 error.
limit_req_zone $limit zone=one:10m rate=30r/m;
limit_req zone=one burst=3;
limit_req_log_level warn;
limit_req_status 503;
ज़ोन के निर्देशों को http स्तर पर रखा जाना चाहिए, हालांकि अन्य निर्देशों को सर्वर या स्थान स्तर पर उनके दायरे या आगे दर्जी की सीमाओं को सीमित करने के लिए और नीचे रखा जा सकता है।
भविष्य की जानकारी के लिए Nginx प्रलेखन ngx_http_limit_req_module और ngx_http_limit_conn_module देखें