gpt4 book ai didi

nginx - 扩展默认的 nginx mime.types 文件

转载 作者:行者123 更新时间:2023-12-03 07:49:08 26 4
gpt4 key购买 nike

我想向 nginx mime 类型添加一些额外的类型,但我不想编辑默认的 /etc/nginx/mime.types 因为这会增加一些额外的复杂性到部署过程。

如果我添加 types {...}我的 nginx.conf 部分它将覆盖使用 include mime.types; 声明的所有其他类型。

我认为我可以为需要处理的文件的扩展名编写一个位置规则,但我认为必须有一种更简洁的方法来实现这一点。

最佳答案

If I add a types {...} section to my nginx.conf it will override all the other types that were declared with the include mime.types;.

不,不会。

您只需在 mime.types 包含的同一级别指定其他类型:

include mime.types;
types {
# here are additional types
application/javascript mjs;
}

关于nginx - 扩展默认的 nginx mime.types 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16789494/

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