Update init.lua

pull/13/head
loveshell 2013-11-08 18:17:05 +08:00
parent 87646bb1ef
commit e1ffb54cc3
1 changed files with 6 additions and 4 deletions

View File

@ -78,12 +78,14 @@ end
function whiteurl() function whiteurl()
if WhiteCheck then if WhiteCheck then
if wturlrules ~=nil then
for _,rule in pairs(wturlrules) do for _,rule in pairs(wturlrules) do
if ngxmatch(ngx.var.request_uri,rule,"isjo") then if ngxmatch(ngx.var.request_uri,rule,"isjo") then
return true return true
end end
end end
end end
end
return false return false
end end