尝试更改我通过 nginx 服务器进行反向代理的页面内容。我尝试使用 nginx_substitutions_filter,但没有成功。
有人知道这是否可行,以及它是如何实现的吗?例如 - 想要foo
用bar
on替换所有实例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;
}