作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试反向代理我的网站并修改内容。为此,我使用 sub_filter 编译了 nginx。它现在接受 sub_filter 指令,但不知何故不起作用。
server {
listen 8080;
server_name www.xxx.com;
access_log /var/log/nginx/www.goparts.access.log main;
error_log /var/log/nginx/www.goparts.error.log;
root /usr/share/nginx/html;
index index.html index.htm;
## send request back to apache1 ##
location / {
sub_filter <title> '<title>test</title>';
sub_filter_once on;
proxy_pass http://www.google.fr;
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
proxy_redirect off;
proxy_buffering off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
请帮助我
最佳答案
检查上游源是否开启了gzip,如果是则需要
proxy_set_header Accept-Encoding "";
所以整个事情就像这样
location / {
proxy_set_header Accept-Encoding "";
proxy_pass http://upstream.site/;
sub_filter_types text/css;
sub_filter_once off;
sub_filter .upstream.site special.our.domain;
}
检查这些链接
关于nginx - nginx 的 http_sub_module/sub_filter 和反向代理不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31893211/
我正在尝试使用以下内容重写代理页面的正文链接: sub_filter http://proxied.page.come http://local.page.com; sub_filte
我需要提供带有内容替换的静态 html 文件。 我尝试: server { root /var/www/test; location / { gzip off;
我正在尝试反向代理我的网站并修改内容。为此,我使用 sub_filter 编译了 nginx。它现在接受 sub_filter 指令,但不知何故不起作用。 server { listen
我是一名优秀的程序员,十分优秀!