How to read the regional information of IP using Nginx and GeoIP module

How to read the regional information of IP using Nginx and GeoIP module

Install GeoIP on Linux

yum install nginx-module-geoip

http_geoip_module usage scenarios

1. Differentiate between domestic and foreign HTTP access rules

2. Differentiate domestic cities and regions to make HTTP access rules

After yum is installed, find the installed module file

If nginx is installed using yun, it is usually installed in the /etc/nginx/modules/ directory

Note: If nginx is not installed by yum but compiled from source code, you need to reinstall and compile nginx with this module, and then you do not need to add this module manually.

Manually add modules

The module is loaded at the same level as http in the header of the nginx.conf configuration file

load_module "modules/ngx_http_geoip_module.so";
load_module "modules/ngx_stream_geoip_module.so";

Because GeoIP is based on the database file provided by MaxMind to read the regional information, it is necessary to download the regional file of the IP.

This database is binary and cannot be opened with a text editor. The GeoIP library above is required to read it.

wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz #Country's regional IP
wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz #City's regional IP

Then unzip

load_module "modules/ngx_http_geoip_module.so";
load_module "modules/ngx_stream_geoip_module.so";

.......


http{
geoip_country /etc/nginx/geoip/GeoIP.dat; #Load country IP
geoip_city /etc/nginx/geoip/GeoLiteCity.dat; #Load city IP

.........

 server
 {
 ......



 location / {
 #If it is not Chinese, return 403;
 if ($geoip_country_code != CN) {
  return 403;
 }
 }
 #Return country and city information location /myip {
 default_type text/plain;
 return 200 "$remote_addr $geoip_country_name $geoip_country_code $geoip_city";
 }



....
 }
}

Then visit your IP address/myip to return the country and city information of the IP.

The above method of using Nginx and GeoIP module to read the regional information of IP is all the content that the editor shares 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:
  • Nginx geoip module to achieve regional load balancing

<<:  Implementation of communication between Vue and Flask

>>:  Vue-pdf implements online preview of PDF files

Recommend

Brief analysis of mysql scheduled backup tasks

Introduction In a production environment, in orde...

In-depth explanation of the style feature in Vue3 single-file components

Table of contents style scoped style module State...

JS deep and shallow copy details

Table of contents 1. What does shallow copy mean?...

Implementation of tomcat deployment project and integration with IDEA

Table of contents 3 ways to deploy projects with ...

Use of Linux xargs command

1. Function: xargs can convert the data separated...

Xftp download and installation tutorial (graphic tutorial)

If you want to transfer files between Windows and...

Native JS to achieve book flipping effects

This article shares with you a book flipping effe...

Detailed explanation of the problems and solutions caused by floating elements

1. Problem Multiple floating elements cannot expa...

Introduction and usage of Angular pipeline PIPE

Preface PIPE, translated as pipeline. Angular pip...

Summary of front-end knowledge in the Gokudō game

background In the early stages of learning Japane...

Vue defines private filters and basic usage

The methods and concepts of private filters and g...

17 JavaScript One-Liners

Table of contents 1. DOM & BOM related 1. Che...

Image hover toggle button implemented with CSS3

Result:Implementation Code html <ul class=&quo...