Im now building a reverse proxy with Nginx, and i have a js file that sub_filter doesn't effect
such as
AAAA.js
Response Headers
Accept-Ranges: bytes
Connection: keep-alive
Content-Encoding: gzip
Content-Type: text/javascript
strict^transport-security: max-age=31536000
Transfer-Encoding: chunked
Size: 301.50kB
Without CRLF, one liner js.
but my setting of nginx.conf does effect the similer jquerymin.js
such as
ResponseHeasers
Connection: keep-alive
Content-Encoding: gzip
Content-Type: text/javascipt
strict-transport-security: max-age=31536000
Transfer-Encoding: chunked
Size: 93.90kB
Without CRLF, one liner js.
I thought the difference of these two is only the file size, so ive tried like
proxy_buffer_size 1024k;
proxy_buffers 4 1024k;
but nothing changed.
Any suggestion, please.
Best regards. yahoo7964.