On Fri, Jan 10, 2020 at 04:57:32PM -0800, Roger Fischer wrote:

Hi there,

> is there a hook into the nginx processing to modify the response body (and 
> headers) before they are cached when using with proxy_pass?
> 

I don't know if there is such a hook; but I do know that you can introduce
another nginx-step to achieve the same end result.

That is: right now you have something like:

  nginx: proxy_pass with cache -> upstream

Instead you can have

  nginx: proxy_pass with cache -> nginx: proxy_pass with body filter
  -> upstream

so that the output of the one run of your body filter is cached by the
first nginx.

        f
-- 
Francis Daly        fran...@daoine.org
_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to