我正在寻找“如何压缩加载时间js文件”,我尝试了question的解决方案(我正在使用Extjs)。
我的朋友也建议this。但是,它使用Apache作为Web服务器。任何人都知道如何在NGINX中做到这一点?
我的托管使用nginx作为Web服务器,我对Web服务器配置一无所知。
抱歉,如果我的英语不好......答案 0 :(得分:42)
如果您对Web服务器配置一无所知,我假设您也不知道编辑配置文件的方式/位置。
nginx conf文件位于/etc/nginx/nginx.conf
(在Ubuntu 12.04中验证)
默认情况下,启用nginx gzip模块。因此,请检查此服务是否已启用using an online tool like this。
如果禁用它,请在nginx.conf
中的服务器{...}条目之前添加它# output compression saves bandwidth
gzip on;
gzip_http_version 1.1;
gzip_vary on;
gzip_comp_level 6;
gzip_proxied any;
gzip_types text/plain text/html text/css application/json application/javascript application/x-javascript text/javascript text/xml application/xml application/rss+xml application/atom+xml application/rdf+xml;
# make sure gzip does not lose large gzipped js or css files
# see http://blog.leetsoft.com/2007/07/25/nginx-gzip-ssl.html
gzip_buffers 16 8k;
# Disable gzip for certain browsers.
gzip_disable “MSIE [1-6].(?!.*SV1)”;
答案 1 :(得分:1)
我在你需要的nginx.config中进行配置
gzip on;
location ~ ^/(assets|images|javascripts|stylesheets|swfs|system)/ {
gzip_static on;
expires 1w;
add_header Cache-Control public;
add_header Last-Modified "";
add_header ETag "";
}
location ~* \.(jpg|jpeg|png|gif|ico|css|js|svg)$ {
gzip_static on;
expires 1w;
add_header Cache-Control public;
add_header Last-Modified "";
add_header ETag "";
}
答案 2 :(得分:0)
您需要使用nginx HTTP gzip或nginx HTTP gzip static模块。静态模块对于很少更改的JavaScript库等内容很有用,可以为每个客户端节省不必要的重新压缩。