标签: nginx http-status-code-204
我有以下配置nginx服务器代理对tomcat服务器的请求:
location /api/ { proxy_pass http://127.0.0.1:8080/; proxy_read_timeout 90; }
这很好用,但是在firefox中我们遇到了这样的问题:Firefox error 'no element found'
为什么nginx会截断内容类型标题,以及如何阻止他这样做?