通过 lua nginx 捕获标头

发布于 2025-01-09 16:31:39 字数 551 浏览 0 评论 0原文

我只想捕获一些包含单词“foo”的标题。我用它 lua nginx 模块 我的代码

    location /lua_test {

        content_by_lua_block {
            local h = ngx.req.get_headers()
            for k, v in pairs(h) do
                if k == k:match("([%w].Foo.*):(.+)") then
                    ngx.header[k] = v
                end
            end
            ngx.say('headers with Foo are captured');
        }

    }

但不幸的是它不起作用。 抱歉,我是 Lua 和 nginx 的新手。感谢您的帮助

I want to capture only some headers which contains word "foo". I used for it lua nginx module
My code

    location /lua_test {

        content_by_lua_block {
            local h = ngx.req.get_headers()
            for k, v in pairs(h) do
                if k == k:match("([%w].Foo.*):(.+)") then
                    ngx.header[k] = v
                end
            end
            ngx.say('headers with Foo are captured');
        }

    }

But unfortunately it doesn't work.
Sorry, I'm newbie to Lua and nginx. Thanks for any help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终难愈 2025-01-16 16:31:39

可能需要查看值:

        local h = ngx.req.get_headers()
        for k, v in pairs(h) do
            if v:find("foo") then -- equivalent v:match("foo") 
                ngx.header[k] = v
            end
        end

或者您是否有自己的键:if k:find("foo") then

may be need to look in the values:

        local h = ngx.req.get_headers()
        for k, v in pairs(h) do
            if v:find("foo") then -- equivalent v:match("foo") 
                ngx.header[k] = v
            end
        end

or do you have your own keys: if k:find("foo") then

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文