如何覆盖 nginx 中的默认 Content-Type?目前,当我请求 01.dae 文件时,有
Content-Type: application/octet-stream;
我希望它是
Content-Type: application/xml;
我尝试了类似的东西
location ~* \.dae$ {
types { };
default_type application/xml;
}
和
location ~* \.dae$ {
add_header Content-Type application/xml;
}
但没有任何效果。