Programming Rambling

mrzard's ramblings in the wild

Loading Cross-domain Fonts From Firefox

| Comments

When requiring a font from an external CSS file (assets domain, CDN, etc), you may see that Firefox refuses to display the font. This is because Firefox, by default, disables cross-domain fonts. To solve this you have to add a header to the response with the font file. The header is Access-Control-Allow-Origin: *

In a typical nginx setup, this is achieved with this snippet:

nginx add header

nginx add header
1
2
3
location ~* \.(eot|ttf|woff)$ {
  add_header Access-Control-Allow-Origin *;
}   

Once you have that in place, the fonts will be loaded correctly from Firefox.

Comments