我有以下结构:
static
- css
- fonts
- images
我使用css加载字体:
@font-face {
font-family:Ram;
src:url(../fonts/ram/normal/ram.eot);
这适用于我的计算机,但不适用于登台服务器。
在Nginx中,我以这种方式提供静态文件:
server {
listen 80;
server_name 104.02.01.01;
location = /favicon.ico { access_log off; log_not_found off; }
location /static/ {
if ($invalid_referer) {
return 404;
}
alias /home/d42/proj/pst/static/;
}