Hari ini saya memperbarui paket Font Awesome ke 4.3.0 dan memperhatikan bahwa font woff2 ditambahkan. File itu terhubung dalam CSS jadi saya perlu mengkonfigurasi nginx untuk menyajikan file woff2 dengan benar.
Saat ini saya memiliki blok ini di nginx config untuk font:
location ~* \.(otf|eot|woff|ttf)$ {
types {font/opentype otf;}
types {application/vnd.ms-fontobject eot;}
types {font/truetype ttf;}
types {application/font-woff woff;}
}
Apa tipe mime yang tepat untuk font woff2?
<IfModule mod_mime.c> AddType font/woff2 woff2
dan<IfModule mod_expires.c> ExpiresActive On ExpiresByType font/woff2 "access plus 1 month"
. (Menutup tag dan baris baru dihilangkan.)