2
NGINX gzip이 JavaScript 파일을 압축하지 않음
모든 JavaScript 파일은 nginx gzip으로 압축되지 않습니다. CSS 파일이 작동합니다. 내에 nginx.conf는 다음과 같은 줄이 있습니다. gzip on; gzip_disable "MSIE [1-6]\.(?!.*SV1)"; gzip_proxied any; gzip_buffers 16 8k; gzip_types text/plain application/x-javascript text/xml text/css; gzip_vary on;
79
nginx