You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
uuWAF/rules/geo-block.lua

17 lines
311 B

--[[
: 访
:
:
2 months ago
: 访
--]]
local country, province, city = waf.ip2loc(waf.ip)
6 days ago
if country ~= "中国" and country ~= "" then
2 months ago
return true, "限制非大陆地区访问", true
end
return false