Commit e884d8f4 by Joneq

答应header变量

parent c6ac3258
Showing with 5 additions and 1 deletions
...@@ -21,7 +21,11 @@ local cjson = require "cjson" ...@@ -21,7 +21,11 @@ local cjson = require "cjson"
ngx.say(ngx.req.get_headers()["X-Real-IP"], err) local headers = ngx.req.get_headers()
for k, v in pairs(headers) do
print(k .. ":" .. v)
end
ngx.say(headers, err)
ngx.exit(ngx.HTTP_FORBIDDEN) ngx.exit(ngx.HTTP_FORBIDDEN)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment