使用反向代理更改 nginx 响应主体

使用反向代理更改 nginx 响应主体

尝试更改我通过 nginx 服务器进行反向代理的页面内容。我尝试使用 nginx_substitutions_filter,但没有成功。

有人知道这是否可行,以及它是如何实现的吗?例如 - 想要foobaron替换所有实例http://lotsoffoos.com

location / {

  proxy_set_header        X-Real-IP $remote_addr;
  proxy_pass          https://lotsoffoos.com;
  proxy_read_timeout  90;

  subs_filter_types  text/html text/css text/xml;
  subs_filter “foo” “bar" gir;

}

相关内容