Heute habe ich das Font Awesome- Paket auf 4.3.0 aktualisiert und festgestellt, dass die Schriftart woff2 hinzugefügt wurde. Diese Datei ist in CSS verknüpft, daher muss ich nginx so konfigurieren, dass woff2-Dateien ordnungsgemäß bereitgestellt werden.
Derzeit habe ich diesen Block in der Nginx-Konfiguration für Schriftarten:
location ~* \.(otf|eot|woff|ttf)$ {
types {font/opentype otf;}
types {application/vnd.ms-fontobject eot;}
types {font/truetype ttf;}
types {application/font-woff woff;}
}
Was ist der richtige MIME-Typ für woff2-Schriftarten?
<IfModule mod_mime.c> AddType font/woff2 woff2
und<IfModule mod_expires.c> ExpiresActive On ExpiresByType font/woff2 "access plus 1 month"
. (Schließen von Tags und Zeilenumbrüchen weggelassen.)