Hi,For our application special requirement, we need to remove the cookie secure flag in the "Set-Cookie"? What is a easy way to do that with openresty lua module?
Hi,On Fri, Dec 16, 2016 at 8:38 PM, Peng Liu <liup...@gmail.com> wrote:Hi,For our application special requirement, we need to remove the cookie secure flag in the "Set-Cookie"? What is a easy way to do that with openresty lua module?Sounds like lua-resty-cookie (https://github.com/cloudflare/lua-resty-cookie) would be a good use for this; this module lets you programatically work with cookies as objects (tables) and manipulate various cookie attributes, including the Secure flag. .