14 lines
420 B
Text
14 lines
420 B
Text
|
# Cross domain webfont access
|
||
|
location ~* \.(?:ttf|ttc|otf|eot|woff|woff2)$ {
|
||
|
include h5bp/directive-only/cross-domain-insecure.conf;
|
||
|
|
||
|
# Also, set cache rules for webfonts.
|
||
|
#
|
||
|
# See http://wiki.nginx.org/HttpCoreModule#location
|
||
|
# And https://github.com/h5bp/server-configs/issues/85
|
||
|
# And https://github.com/h5bp/server-configs/issues/86
|
||
|
expires 1M;
|
||
|
access_log off;
|
||
|
add_header Cache-Control "public";
|
||
|
}
|