Hi all,
Is there a way to get the response headers from internal-requests?
p.s. I am using ngx.location.capture(uri) for the internal requests.
Thanks in advance.
Hi all,
Is there a way to get the response headers from internal-requests?
p.s. I am using ngx.location.capture(uri) for the internal requests.
Thanks in advance.
Hello,
http://wiki.nginx.org/HttpLuaModule#ngx.location.capture
res.header holds all the response headers of the subrequest and it is a
normal Lua table. For multi-value response headers, the value is a Lua
(array) table that holds all the values in the order that they appear.
For
instance, if the subrequest response headers contain the following
lines:
Set-Cookie: a=3
Set-Cookie: foo=bar
Set-Cookie: baz=blah
Then res.header[“Set-Cookie”] will be evaluated to the table value
{“a=3”,
“foo=bar”, “baz=blah”}.
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,250749,250751#msg-250751
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs