nginx + geoip2简明配置

简介: 有时候需要nginx结合IP地址库做一些事情,比如过滤掉某个国家的IP,该如何做呢?

nginx结合GeoIP可以做一些很有趣的事情,比如过滤掉某些国家的IP。该如何配置呢?

安装环境

CentOS 7.9.2009

nginx 1.25.2

ngx_http_geoip2_module 3.4

libmaxminddb 1.7.1

注册maxmind帐号并下载GeoLite库

https://www.maxmind.com 官网注册个帐号,然后下载GeoLite2 City和GeoLite2 Country这两个IP地址库文件。下载后放在服务器的/usr/local/geoip目录下。

编译libmaxminddb

git clone https://github.com/maxmind/libmaxminddb.git -b1.7.1
cd libmaxminddb
# make编译./configure
makemake install
# 或者也可以使用cmake编译mkdir build && cd build
cmake ..
cmake --build .
cmake --build . --target install

编译nginx

git clone https://github.com/leev/ngx_http_geoip2_module.git
wget https://nginx.org/download/nginx-1.25.2.tar.gz
tar zxvf nginx-1.25.2.tar.gz
cd nginx-1.25.2
CFLAGS=-Wno-stringop-truncation ./configure \
--prefix=/usr/local/nginx \
--with-file-aio \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_xslt_module \
--with-http_image_filter_module \
--with-http_ssl_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_gzip_static_module \
--with-http_secure_link_module \
--with-http_random_index_module \
--with-http_stub_status_module \
--with-http_v2_module \
--add-module=../ngx_http_geoip2_module \
--with-http_v2_modulemakemake install

安装geoipupdate

yum install libmaxminddb-devel geoipupdate

配置geoip

maxmind geoip配置文件保存在/etc/GeoIP.conf中,主要内容如下(需要修改的部分已加注释):

# cat GeoIP.conf# Please see http://dev.maxmind.com/geoip/geoipupdate/ for instructions# on setting up geoipupdate, including information on how to download a# pre-filled GeoIP.conf file.# Enter your account ID and license key below. These are available from# https://www.maxmind.com/en/my_license_key. If you are only using free# GeoLite databases, you may leave the 0 values.# 注册maxmind帐号后可获取AccountID xxxxxxxxxx
LicenseKey xxxxxxxxx
# Enter the edition IDs of the databases you would like to update.# Multiple edition IDs are separated by spaces.EditionIDs GeoLite2-Country GeoLite2-City
# The remaining settings are OPTIONAL.# The directory to store the database files. Defaults to /usr/local/share/GeoIP# geoip数据库位置DatabaseDirectory /usr/local/geoip
# The server to use. Defaults to "updates.maxmind.com".# Host updates.maxmind.com# The desired protocol either "https" (default) or "http".# Protocol https# The proxy host name or IP address. You may optionally specify a# port number, e.g., 127.0.0.1:8888. If no port number is specified, 1080# will be used.# Proxy 127.0.0.1:8888# The user name and password to use with your proxy server.# ProxyUserPassword username:password# Whether to skip host name verification on HTTPS connections.# Defaults to "0".# SkipHostnameVerification 0# Whether to skip peer verification on HTTPS connections.# Defaults to "0".# SkipPeerVerification 0# Whether to preserve modification times of files downloaded from the server.# Defaults to "0".# PreserveFileTimes 0# The lock file to use. This ensures only one geoipupdate process can run at a# time.# Defaults to ".geoipupdate.lock" under the DatabaseDirectory.# LockFile /usr/local/share/GeoIP/.geoipupdate.lock

nginx相关配置

    geoip2 /usr/local/geoip/GeoLite2-City.mmdb {
#default是为了当ip查不到信息时设置一个默认值。$countrydefault=CN country iso_code;
$city_namedefault=Beijing city names en;
$provincedefault=Henan subdivisions 0 names en;
    }
    map $province$allowed_province {
        default yes;
#Guangdong no;#Guangxi no;#Fujian no;#Beijing no;#Shanghai no;#Tianjin no;    }
    map $country$allowed_country {
        default yes;  #默认都拒绝        CN yes;  #中国大陆        TW yes;  #中国台湾        HK yes;  #中国香港        MO yes;  #中国澳门        TH yes;  #泰国        VN yes;  #越南        US no;   #美国        BR no;
        IE yes;
        KOR yes;
    }

GeoIP日常使用及更新

# 查看IP地址属地mmdblookup --file /usr/local/geoip/GeoLite2-City.mmdb --ip223.104.30.232 subdivisions 0 names
# 更新IP地址库,因为IP地址库更新比较频繁,建议加入crontab中geoipupdate
相关文章
|
27天前
|
应用服务中间件 BI nginx
Nginx的location配置详解
【10月更文挑战第16天】Nginx的location配置详解
|
1月前
|
缓存 负载均衡 安全
Nginx常用基本配置总结:从入门到实战的全方位指南
Nginx常用基本配置总结:从入门到实战的全方位指南
256 0
|
1月前
|
应用服务中间件 Linux nginx
Jetson 环境安装(四):jetson nano配置ffmpeg和nginx(亲测)之编译错误汇总
这篇文章是关于在Jetson Nano上配置FFmpeg和Nginx时遇到的编译错误及其解决方案的汇总。
89 4
|
7天前
|
存储 负载均衡 中间件
Nginx反向代理配置详解,图文全面总结,建议收藏
Nginx 是大型架构必备中间件,也是大厂喜欢考察的内容,必知必会。本篇全面详解 Nginx 反向代理及配置,建议收藏。
Nginx反向代理配置详解,图文全面总结,建议收藏
|
19天前
|
应用服务中间件 API nginx
nginx配置反向代理404问题
【10月更文挑战第18天】本文介绍了使用Nginx进行反向代理的配置方法,解决了404错误、跨域问题和302重定向问题。关键配置包括代理路径、请求头设置、跨域头添加以及端口转发设置。通过调整`proxy_set_header`和添加必要的HTTP头,实现了稳定的服务代理和跨域访问。
nginx配置反向代理404问题
|
1月前
|
编解码 Ubuntu 应用服务中间件
Jetson 环境安装(三):jetson nano配置ffmpeg和nginx(亲测)
本文介绍了在NVIDIA Jetson Nano上配置FFmpeg和Nginx的步骤,包括安装、配置和自启动设置。
137 1
Jetson 环境安装(三):jetson nano配置ffmpeg和nginx(亲测)
|
24天前
|
缓存 负载均衡 应用服务中间件
Nginx配置
【10月更文挑战第22天】在实际配置 Nginx 时,需要根据具体的需求和环境进行调整和优化。同时,还需要注意配置文件的语法正确性和安全性。
40 7
|
1月前
|
前端开发 JavaScript 应用服务中间件
终极 Nginx 配置指南
本文介绍了Nginx的基本配置及其优化方法。首先,通过删除注释简化了Nginx的默认配置文件,使其更易于理解。接着,文章将Nginx配置文件分为全局块、events块和http块三部分进行详细解释。此外,还提供了如何快速上线网站、解决前端history模式404问题、配置反向代理、开启gzip压缩、设置维护页面、在同一IP上部署多个网站以及实现动静分离的具体配置示例。最后,附上了Nginx的基础命令,包括安装、启动、重启和关闭等操作。
|
1月前
|
负载均衡 应用服务中间件 nginx
Nginx的6大负载均衡策略及权重轮询手写配置
【10月更文挑战第9天】 Nginx是一款高性能的HTTP服务器和反向代理服务器,它在处理大量并发请求时表现出色。Nginx的负载均衡功能可以将请求分发到多个服务器,提高网站的吞吐量和可靠性。以下是Nginx支持的6大负载均衡策略:
148 7
|
1月前
|
缓存 前端开发 应用服务中间件
CORS跨域+Nginx配置、Apache配置
CORS跨域+Nginx配置、Apache配置
140 7