—— 阿尔伯特·爱因斯坦

程序员の奇妙冒险

NginxNginx
2025-04-09 11:59阅读:88评论:0

Nginx GeoIP2模块

需要下载 geoip.dat ip库 下载地址https://dolphincn.github.io/images/nginx/geoip/geoip.dat.gz 下载后解压得到geoip.dat文件

1
2
3
4
5
6
7
8
http {
geoip_country /usr/local/nginx/geoip.dat;
map $geoip_country_code $allowed_country {
default no; # 默认不允许,如果改为 yes 表示默认允许
CN yes; #区域允许,这个CN就是代表中国,如果是多个地区,就是CN下面加就行
}
}
 
  • 需要下载 geoip.dat ip库
  • 下载地址__PROTECTED_0__
  • 下载后解压得到geoip.dat文件
评论(0)
暂无评论来抢沙发吧~