4

我将 Nginx 作为简单的反向代理兼缓存运行,现在我想根据收到的响应设置一些标头(正文不是标头)。

让 location_capture_by Lua 做到这一点看起来很简单,但似乎我无法让缓存正常工作。

初始设置是:

location / {
..
try_files $uri @upstream_server
}

location @upstream_server {
      proxy_pass "http://web_lb";
      proxy_cache small;
      proxy_cache_methods POST;
      proxy_cache_key "$request_uri|$request_body";
      client_max_body_size 500M;
      add_header X-Cached $upstream_cache_status;
      set_real_ip_from   10.86.102.0/24;
      real_ip_header      X-Forwarded-For;
      proxy_ignore_headers Set-Cookie;
      proxy_ignore_headers Cache-Control;
}

将其更改为:


location /{
 content_by_lua '
     local res = ngx.location.capture(
                "/new-location",
                { method = ngx.HTTP_POST, body = ngx.var.request_body})
     #update response body here and header etc based on content
      ngx.say(res.body)
      '; }

location new-location{
try_files $uri @upstream_server
}

location @upstream_server {
      proxy_pass "http://web_lb;"
      proxy_cache small;
      proxy_cache_methods POST;
      proxy_cache_key "$request_uri|$request_body";
      client_max_body_size 500M;
      add_header X-Cached $upstream_cache_status;
      set_real_ip_from   10.86.102.0/24;
      real_ip_header      X-Forwarded-For;
      proxy_ignore_headers Set-Cookie;
      proxy_ignore_headers Cache-Control;
}

======

我发现我丢失了所有原始标头,添加了一个标头作为 Proxy_Header 处理的一部分,包括 upstream_cache_status 标头。但是我发现 Nginx 仍然服务于来自缓存本身的重复请求。

有什么理由会这样吗?我也是这里的早期初学者,所以请原谅一些基本的问题。

4

1 回答 1

0

实际上, location.capture 并不是为了做你做的事情而设计的,但是,如果我让你正确(你想发送浏览器发送给你的子请求的标题),你可能可以使用 ngx.ctx + set 来破解它;)

但我会说这是一种非常肮脏的笨拙方式。

于 2015-06-17T18:25:29.093 回答