我有一个需要使用的本地 .ttf 字体。我试图编辑 mime 类型
application/x-font-truetype ttfl
也试过
application/x-font-ttf ttf;
mysite.conf 看起来像这样:
server {
listen 80;
server_name mysite.com www.mysite.com;
location / {
root /var/www/mysite.com/public_html;
index index.html index.htm;
try_files $uri $uri/ =404;
}
location ~* \.(eot|ttf|woff)$ {
add_header Access-Control-Allow-Origin *;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
但我仍然得到 404 的字体。我究竟做错了什么?