重复扩展 "woff",内容类型:"font/woff2",先前的内容类型:/etc/nginx/mime.types 中的 "font/woff"

duplicate extension "woff", content type: "font/woff2", previous content type: "font/woff" in /etc/nginx/mime.types

在最新的 Nginx 更新后(目前 nginx/1.21.6),当我执行 nginx -t:

时开始出现以下警告

nginx: [warn] duplicate extension "woff", content type: "font/woff2", previous content type: "font/woff" in /etc/nginx/mime.types:29

我所有的服务器都出现了同样的问题,Ubuntu 18.04 或 20.04 + 最新的 nginx 主线

我从未编辑过 mime.types 文件,其中包含以下内容:

types {
    [...]
    font/woff                             woff;
    font/woff2                            woff;
}

据我了解,它不喜欢这两行具有相同的值,但我应该删除哪一行?

我发现问题出在哪里,如果您有同样的问题,您可能正在使用 ppa:ondrej/nginx-mainline 存储库,并且您有:

font/woff                             woff;
font/woff2                            woff;

而不是:

font/woff                                        woff;
font/woff2                                       woff2;

参考 nginx/nginx master branch 上的文件。