gpt4 book ai didi

nginx - 强制 nginx 发送特定的 Content-Type

转载 作者:行者123 更新时间:2023-12-03 05:45:51 29 4
gpt4 key购买 nike

如何覆盖 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;
}

但没有任何效果。

最佳答案

如果您没有文件扩展名:

location ~ something {
default_type application/xml;
}

Nginx docs for default_type

如果您正在设置让我们使用创建 http 服务器的客户端加密证书: How to use golang lego let's encrypt client behind nginx?

关于nginx - 强制 nginx 发送特定的 Content-Type,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19629930/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com