Use valid font mime types in the nginx config.
This commit is contained in:
parent
33a4f98eb0
commit
3ede2df8bc
|
@ -88,6 +88,6 @@ types {
|
||||||
# Webfonts
|
# Webfonts
|
||||||
application/vnd.ms-fontobject eot;
|
application/vnd.ms-fontobject eot;
|
||||||
application/x-font-ttf ttf ttc;
|
application/x-font-ttf ttf ttc;
|
||||||
font/opentype otf;
|
application/x-font-opentype otf;
|
||||||
application/x-font-woff woff;
|
application/x-font-woff woff;
|
||||||
}
|
}
|
|
@ -69,8 +69,8 @@ http {
|
||||||
application/json
|
application/json
|
||||||
application/xml
|
application/xml
|
||||||
application/rss+xml
|
application/rss+xml
|
||||||
font/truetype
|
application/x-font-ttf
|
||||||
font/opentype
|
application/x-font-opentype
|
||||||
application/vnd.ms-fontobject
|
application/vnd.ms-fontobject
|
||||||
image/svg+xml;
|
image/svg+xml;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue