ngx_http_geoip2_module
模块ngx_http_geoip2_module
,下载地址https://github.com/leev/ngx_http_geoip2_module/
ngx_http_geoip2_module
模块#下载后解压至/home/user/ #你的nginx安装目录下执行,如果你之前有手动安装过其他模块,也要在后面加上 sudo ./configure --prefix=你的nginx安装路径 --add-module=/home/user/ngx_http_geoip2_module-master/ sudo make #只执行make即可。正常情况下会在安装目录下的objs目录下生成新的nginx二进制文件,替换运行中nginx的即可,可把当前nginx备份一下。 #替换后执行 ./nginx -V # 即可看见添加的 ngx_http_geoip2_module
GeoIP2
离线数据库https://www.maxmind.com/en/home
libmaxminddb
3.1
下载 https://github.com/maxmind/libmaxminddb/releases/download/1.3.2/libmaxminddb-1.3.2.tar.gz 并编译
tar -xzf libmaxminddb-1.3.2.tar.gz cd libmaxminddb-1.3.2 ./configure make make check sudo make install sudo ldconfig
3.2
执行完毕,可手动测试是否可行
mmdblookup --file /opt/fy/3rd/GeoIP/GeoLite2-City_20210406/GeoLite2-City.mmdb --ip 220.181.38.148 # --file 后面跟的是上面解压后的mmdb文件地址 # --ip 则是你要查询的ip
正常会返回一个json数据
![IMAGE](quiver-image-url/BA15C7961929C48685E019EBC3C790F1.jpg =664x947)
ok,成功运行
#http 下新增 geoip2 /home/user/GeoLite2-Country_20210406/GeoLite2-Country.mmdb{ #$geoip2_data_city_name source=$remote_addr country names en; $geoip2_data_country_code source=$remote_addr country iso_code; } #注意,这里的source是重点,把访问的真实ip当做来源配置。 #或者用map #配置1 map $geoip2_data_country_code $allowed_country { default yes; US no; JP no; } #配置1允许所有国家访问,除了美国和日本 #配置2 map $geoip2_data_country_code $allowed_country { default no; CN yes; } #配置2只允许中国访问 server 下增加 #简单用法 location / { if ($geoip2_data_country_code != CN ) { return 403; } #当通过mmdb数据库解析出$remote_addr中的ip对应的iso_code !=CN时返回403 } #搭配map if ($allowed_country = no) { return 403; }配好后重启nginx即可放心食用