Linux安装GeoIP
1
|
yum install nginx - module - geoip |
http_geoip_module使用场景
一、区别国内外作HTTP访问规则
二、区别国内城市地域作HTTP访问规则
yum 安装好后找到安装的模块文件
如果nginx是用yun安装的一般是安装到 /etc/nginx/modules/目录下
注意:如果nginx不是yum安装的而是源码编译安装的需要从新安装编译一次nginx加上此模块,然后就不用手动加入此模块了。
手动加入模块
在nginx.conf配置文件的头部载入模块和http是同一个级别的
1
2
|
load_module "modules/ngx_http_geoip_module.so" ; load_module "modules/ngx_stream_geoip_module.so" ; |
因为GeoIP是基于MaxMind 提供了数据库文件来读取地域信息的所以需要下载ip的地域文件。
这个数据库是二进制的,不能用文本编辑器打开,需要上面的 GeoIP 库来读取。
1
2
|
wget http: / / geolite.maxmind.com / download / geoip / database / GeoLiteCountry / GeoIP.dat.gz #国家的地域IP wget http: / / geolite.maxmind.com / download / geoip / database / GeoLiteCity.dat.gz #城市的地域IP |
然后解压
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
load_module "modules/ngx_http_geoip_module.so" ; load_module "modules/ngx_stream_geoip_module.so" ; ....... http{ geoip_country / etc / nginx / geoip / GeoIP.dat; #加载国家IP geoip_city / etc / nginx / geoip / GeoLiteCity.dat; #加载城市IP ......... server { ...... location / { #判断如果不是中国的就返回403; if ($geoip_country_code ! = CN) { return 403 ; } } #返回国家城市信息 location / myip { default_type text / plain; return 200 "$remote_addr $geoip_country_name $geoip_country_code $geoip_city" ; } .... } } |
然后访问 你的IP地址/myip 就可以返回IP所在的国家城市信息了。
以上这篇Nginx和GeoIP模块读取IP所在的地域信息方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/u012600104/article/details/80887422