changeset 9229:28fbf78841dc

MIME: changed type for bmp to image/bmp. At least Chrome, Safari, and Edge do no show image/x-ms-bmp when requested directly (and instead show a download dialog), but do so for IANA-registered MIME type image/bmp. Mozilla considers doing the same (https://bugzilla.mozilla.org/show_bug.cgi?id=1422725). Further, Apache uses image/bmp since the bmp extension was added to mime.types in Apache 1.3.6 (and also used it at least since 1.3.0 in magic-based type detection). The bmp extensions with the image/x-ms-bmp type was added in 863:57cb2052dcc6 (nginx 0.4.14), as a part of a large mime.types change, and it is not clear why image/x-ms-bmp was used instead of image/bmp. As such, changed MIME type for bmp files to image/bmp. Requested by Yuriy Izorkin.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 21 Mar 2024 22:50:11 +0300
parents c363ad6b3b23
children e8b200816108
files conf/mime.types
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/conf/mime.types
+++ b/conf/mime.types
@@ -16,6 +16,7 @@ types {
     text/x-component                                 htc;
 
     image/avif                                       avif;
+    image/bmp                                        bmp;
     image/png                                        png;
     image/svg+xml                                    svg svgz;
     image/tiff                                       tif tiff;
@@ -23,7 +24,6 @@ types {
     image/webp                                       webp;
     image/x-icon                                     ico;
     image/x-jng                                      jng;
-    image/x-ms-bmp                                   bmp;
 
     font/woff                                        woff;
     font/woff2                                       woff2;