2020-06-06 23:07:06 +08:00
|
|
|
local ngx = ngx
|
|
|
|
|
|
2019-02-24 21:32:17 -05:00
|
|
|
local _M = {}
|
|
|
|
|
|
|
|
|
|
function _M.rewrite()
|
|
|
|
|
local ua = ngx.var.http_user_agent
|
|
|
|
|
|
|
|
|
|
if ua == "hello" then
|
2020-04-13 00:10:01 -04:00
|
|
|
ngx.req.set_header("x-hello-world", "1")
|
2019-02-24 21:32:17 -05:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return _M
|