vps交流

请大佬帮看个ng规则


本帖最后由 莆田郑少斌 于 2022-9-22 21:17 编辑

小鸡承载着多个博客
以下不在nginx.conf配置
在网站conf配置

nginx version: nginx/1.22.0
–with-http_geoip_module

需求:CN IP访问A站时跳转到B站,其他默认A站。
以下配置目前不生效

  1.         geoip_country /usr/share/GeoIP/GeoIP.dat;
  2.         map $geoip_country_code $allowed_country {
  3.                 default yes;
  4.                 CN no;
  5.         }
  6. server

复制代码

  1.         location ~ / {
  2.                 if ($allowed_country = no) {
  3.                 rewrite ^/(.*)$ https://B.com/$1 last;
  4.                 }
  5.         }

复制代码

顶一下
建议在cf上搞 不要用ng实现 可能会有漏网之鱼

喵酱文晓依 发表于 2022-9-22 21:24
建议在cf上搞 不要用ng实现 可能会有漏网之鱼

CF 页面规则吗
请教怎么实现