tomcat和nginx gzip压缩

阅读更多
tomcat下gzip:
gzip在tomcat7下,如果要压缩js,需要在tomcat conf server.xml 除了要添加
compression="on"
还要添加

tomcat和nginx gzip压缩_第1张图片
 
compressableMimeType="text/html,text/xml,text/plain,text/css,application/javascript"
tomcat8不需要添加下面的compressableMimeType
 
nginx下gzip:
在conf下nginx.conf文件下
#压缩
gzip on;
gzip_types text/plain text/css text/xml application/javascript;

client_max_body_size 100m;
server_tokens off;
 
  • tomcat和nginx gzip压缩_第2张图片
  • 大小: 5.2 KB
  • 查看图片附件

你可能感兴趣的:(tomcat,nginx,gzip)