# HG changeset patch # User Maxim Dounin # Date 1711050611 -10800 # Node ID 28fbf78841dc3cefb8ecc24adeab5510772d3f8c # Parent c363ad6b3b23ae7fed28a7cdfa20b0cb3fc6a584 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. diff --git a/conf/mime.types b/conf/mime.types --- 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;