mirror of
https://github.com/wahyd4/ingress-nginx.git
synced 2026-08-21 11:35:49 +10:00
16 lines
207 B
Lua
16 lines
207 B
Lua
local _M = {}
|
|
|
|
function _M.rewrite()
|
|
ngx.req.set_header("x-hello-world", "1")
|
|
end
|
|
|
|
function _M.access()
|
|
local ua = ngx.var.http_user_agent
|
|
|
|
if ua == "hello" then
|
|
ngx.exit(403)
|
|
end
|
|
end
|
|
|
|
return _M
|