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