我通过 nginx 将 html 从 Intranet 传递到 Internet。我想对 html 文件进行一些转换。我在我的 nginx.conf 中使用了这样的片段
location /news/ {
proxy_pass http://news.intranet/$request_uri;
proxy_set_header Host news.intranet;
xslt_types text/html;
xslt_stylesheet /var/www/www/style-news.xsl;
}
但如果 html 无效,我会在 error.log 中收到类似“开始和结束标签不匹配”的消息。可能是其他的。
我该如何控制和避免它?