Oggi ho aggiornato il pacchetto Font Awesome alla 4.3.0 e ho notato che è stato aggiunto il carattere woff2 . Quel file è collegato in CSS, quindi devo configurare nginx per servire correttamente i file woff2.
Attualmente ho questo blocco in nginx config per i caratteri:
location ~* \.(otf|eot|woff|ttf)$ {
types {font/opentype otf;}
types {application/vnd.ms-fontobject eot;}
types {font/truetype ttf;}
types {application/font-woff woff;}
}
Qual è il tipo mime corretto per i caratteri woff2?
<IfModule mod_mime.c> AddType font/woff2 woff2
e<IfModule mod_expires.c> ExpiresActive On ExpiresByType font/woff2 "access plus 1 month"
. (Tag di chiusura e newline omessi.)