去评论
dz插件网

请教大佬们 设置了网站访问权限 但是不起效

迪巴拉
2024/05/06 11:41:09
目的是禁止来自中国的IP和使用中文浏览器语言的用户访问我的网站 我在nginx和网站配置文件的尾部 添加了下面两段代码 但是访问是403  已经使用国外环境访问 浏览器语言英语 请教一下大佬们 是哪里没有设置对
nginx配置:
map $http_cf_ipcountry $allow_country {
    default yes;
    CN no;
}

map $http_accept_language $allow_language {
    default yes;
    ~*zh yes;
}
网站配置:
server {
    listen 80;

    location / {
        if ($allow_country = no) {
            return 403;
        }
        if ($allow_language = yes) {
            return 403;
        }
        
        # 其他逻辑...
    }
}