nginx默认有时不压缩字体文件的。不过可以配置成压缩ttf、otf等字体文件。
在mime.types指定字体文件类型。(/etc/nginx/mime.types)
font/woff woff;
font/woff2 woff2;
font/ttf ttf;
font/opentype otf;
在主配置文件中指定要压缩的字体文件。(/etc/nginx/nginx.conf)
gzip_types font/ttf font/opentype font/x-woff;
nginx的gzip简单用法