我通過nginx將內部網的html傳遞到Internet。我想用html文件進行一些轉換。 我用這樣的片段在我的nginx.conf通過xslt與nginx和代理解析無效的html
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消息。可能是其他。
我該如何控制和避免它?