Example of setting up a whitelist in Nginx using the geo module

Example of setting up a whitelist in Nginx using the geo module

Original configuration:

http {
......
limit_conn_zone $binary_remote_addr zone=one:10m;
limit_req_zone $binary_remote_addr zone=fifa:10m rate=5r/s;
......
server {
......
limit_conn one 5;
limit_req zone=fifa burst=100;
......
}}

Whitelist configuration:

http {
......
geo$whiteiplist {
 default 1;
 127.0.0.1 0;
 10.10.0.0/24 0;
}
map $whiteiplist $limit {
 1 $binary_remote_addr;
 0 "";
}
limit_conn_zone $limit zone=one:10m;
limit_req_zone $limit zone=fifa:10m rate=5r/s;
......
server {
......
limit_conn one 5;
limit_req zone=fifa burst=100;
......
}}

illustrate:

The geo directive defines a whitelist $whiteiplist, the default value is 1, and all are restricted. If the client IP matches the IP listed in the whitelist, the $whiteiplist value is 0, which means no restriction.

The map instruction maps the $whiteiplist value to 1, that is, the restricted IP, to the client IP. Map the $whiteiplist value of 0, that is, the whitelist IP, to an empty string.

Limit_conn_zone and limit_req_zone directives with empty keys will be ignored, so there is no limit on the listed IPs.

The above example of Nginx setting whitelist through geo module is all I want to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • How to set directory whitelist and IP whitelist in nginx
  • How to dynamically add access whitelist to nginx
  • Configure a firewall with blacklist or whitelist function for the Nginx server
  • Detailed explanation of nginx-naxsi whitelist rules

<<:  JS realizes simple picture carousel effect

>>:  Mysql solution to improve the efficiency of copying large data tables

Recommend

Solution to mysql server 5.5 connection failure

The solution to the problem that mysql cannot be ...

js implements the classic minesweeper game

This article example shares the specific code of ...

Detailed explanation of the difference between tinyint and int in MySQL

Question: What is the difference between int(1) a...

How to export mysql query results to csv

To export MySQL query results to csv , you usuall...

Interpretation of CocosCreator source code: engine startup and main loop

Table of contents Preface preparation Go! text St...

...

Diving into JS inheritance

Table of contents Preface Prepare Summarize n way...

Detailed explanation of the usage and function of MySQL cursor

[Usage and function of mysql cursor] example: The...

Pure CSS to achieve cool neon light effect (with demo)

I have recently been following the CSS Animation ...

Detailed explanation of Angular parent-child component communication

Table of contents Overview 1. Overview of input a...

Solve the problem of blank gap at the bottom of Img picture

When working on a recent project, I found that th...

Deleting files with spaces in Linux (not directories)

In our daily work, we often come into contact wit...

Optimization of MySQL thread_stack connection thread

MySQL can be connected not only through the netwo...

Small program to implement a simple calculator

This article example shares the specific code of ...

Specific use of CSS front-end page rendering optimization attribute will-change

Preface When scroll events such as scroll and res...