Files
safeGate/403.lua
2022-02-11 17:06:16 +08:00

9 lines
171 B
Lua

function emptyPrint()
end
function say_html()
ngx.header.content_type = "text/html"
ngx.status = ngx.HTTP_FORBIDDEN
ngx.say(html)
ngx.exit(ngx.status)
end