Update `mime.types`
* Reorganized media types and order them alphabetically
* Include some new media types in order to align with what is provided
by the Apache configurations.
c805353c41/src/media_types/media_types.conf
This commit is contained in:
parent
4737654b8f
commit
0ac995867d
|
@ -1,5 +1,6 @@
|
||||||
### HEAD
|
### HEAD
|
||||||
|
|
||||||
|
* Update `mime.types`.
|
||||||
* Remove the mapping of `.manifest` files to the `text/cache-manifest` media type
|
* Remove the mapping of `.manifest` files to the `text/cache-manifest` media type
|
||||||
([d7e0e1b](https://github.com/h5bp/server-configs-nginx/commit/d7e0e1b)).
|
([d7e0e1b](https://github.com/h5bp/server-configs-nginx/commit/d7e0e1b)).
|
||||||
* Change media types for `.atom` and `.rss` files
|
* Change media types for `.atom` and `.rss` files
|
||||||
|
|
219
mime.types
219
mime.types
|
@ -1,112 +1,135 @@
|
||||||
types {
|
types {
|
||||||
|
|
||||||
# Audio
|
# Data interchange
|
||||||
audio/midi mid midi kar;
|
|
||||||
audio/mp4 aac f4a f4b m4a;
|
|
||||||
audio/mpeg mp3;
|
|
||||||
audio/ogg oga ogg opus;
|
|
||||||
audio/x-realaudio ra;
|
|
||||||
audio/x-wav wav;
|
|
||||||
|
|
||||||
# Images
|
application/atom+xml atom;
|
||||||
image/bmp bmp;
|
application/json json map topojson;
|
||||||
image/gif gif;
|
application/ld+json jsonld;
|
||||||
image/jpeg jpeg jpg;
|
application/rss+xml rss;
|
||||||
image/png png;
|
application/vnd.geo+json geojson;
|
||||||
image/svg+xml svg svgz;
|
application/xml rdf xml;
|
||||||
image/tiff tif tiff;
|
|
||||||
image/vnd.wap.wbmp wbmp;
|
|
||||||
image/webp webp;
|
|
||||||
image/x-icon ico cur;
|
|
||||||
image/x-jng jng;
|
|
||||||
|
|
||||||
# JavaScript
|
|
||||||
application/javascript js;
|
|
||||||
application/json json;
|
|
||||||
|
|
||||||
# Manifest files
|
# JavaScript
|
||||||
application/x-web-app-manifest+json webapp;
|
|
||||||
text/cache-manifest appcache;
|
|
||||||
|
|
||||||
# Microsoft Office
|
# Normalize to standard type.
|
||||||
application/msword doc;
|
# https://tools.ietf.org/html/rfc4329#section-7.2
|
||||||
application/vnd.ms-excel xls;
|
application/javascript js;
|
||||||
application/vnd.ms-powerpoint ppt;
|
|
||||||
application/vnd.openxmlformats-officedocument.wordprocessingml.document docx;
|
|
||||||
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx;
|
|
||||||
application/vnd.openxmlformats-officedocument.presentationml.presentation pptx;
|
|
||||||
|
|
||||||
# Video
|
|
||||||
video/3gpp 3gpp 3gp;
|
|
||||||
video/mp4 mp4 m4v f4v f4p;
|
|
||||||
video/mpeg mpeg mpg;
|
|
||||||
video/ogg ogv;
|
|
||||||
video/quicktime mov;
|
|
||||||
video/webm webm;
|
|
||||||
video/x-flv flv;
|
|
||||||
video/x-mng mng;
|
|
||||||
video/x-ms-asf asx asf;
|
|
||||||
video/x-ms-wmv wmv;
|
|
||||||
video/x-msvideo avi;
|
|
||||||
|
|
||||||
# Web feeds
|
# Manifest files
|
||||||
application/atom+xml atom;
|
|
||||||
application/rss+xml rss;
|
|
||||||
application/xml rdf xml;
|
|
||||||
application/xslt+xml xsl;
|
|
||||||
|
|
||||||
# Web fonts
|
application/x-web-app-manifest+json webapp;
|
||||||
application/font-woff woff;
|
text/cache-manifest appcache;
|
||||||
application/font-woff2 woff2;
|
|
||||||
application/vnd.ms-fontobject eot;
|
|
||||||
application/x-font-ttf ttc ttf;
|
|
||||||
font/opentype otf;
|
|
||||||
|
|
||||||
# Other
|
|
||||||
application/java-archive jar war ear;
|
|
||||||
application/mac-binhex40 hqx;
|
|
||||||
application/pdf pdf;
|
|
||||||
application/postscript ps eps ai;
|
|
||||||
application/rtf rtf;
|
|
||||||
application/vnd.wap.wmlc wmlc;
|
|
||||||
application/xhtml+xml xhtml;
|
|
||||||
application/vnd.google-earth.kml+xml kml;
|
|
||||||
application/vnd.google-earth.kmz kmz;
|
|
||||||
application/x-7z-compressed 7z;
|
|
||||||
application/x-chrome-extension crx;
|
|
||||||
application/x-opera-extension oex;
|
|
||||||
application/x-xpinstall xpi;
|
|
||||||
application/x-cocoa cco;
|
|
||||||
application/x-java-archive-diff jardiff;
|
|
||||||
application/x-java-jnlp-file jnlp;
|
|
||||||
application/x-makeself run;
|
|
||||||
application/x-perl pl pm;
|
|
||||||
application/x-pilot prc pdb;
|
|
||||||
application/x-rar-compressed rar;
|
|
||||||
application/x-redhat-package-manager rpm;
|
|
||||||
application/x-sea sea;
|
|
||||||
application/x-shockwave-flash swf;
|
|
||||||
application/x-stuffit sit;
|
|
||||||
application/x-tcl tcl tk;
|
|
||||||
application/x-x509-ca-cert der pem crt;
|
|
||||||
application/x-bittorrent torrent;
|
|
||||||
application/zip zip;
|
|
||||||
|
|
||||||
application/octet-stream bin exe dll;
|
# Media files
|
||||||
application/octet-stream deb;
|
|
||||||
application/octet-stream dmg;
|
|
||||||
application/octet-stream iso img;
|
|
||||||
application/octet-stream msi msp msm;
|
|
||||||
application/octet-stream safariextz;
|
|
||||||
|
|
||||||
text/css css;
|
audio/midi mid midi kar;
|
||||||
text/html html htm shtml;
|
audio/mp4 aac f4a f4b m4a;
|
||||||
text/mathml mml;
|
audio/mpeg mp3;
|
||||||
text/plain txt;
|
audio/ogg oga ogg opus;
|
||||||
text/vnd.sun.j2me.app-descriptor jad;
|
audio/x-realaudio ra;
|
||||||
text/vnd.wap.wml wml;
|
audio/x-wav wav;
|
||||||
text/vtt vtt;
|
image/bmp bmp;
|
||||||
text/x-component htc;
|
image/gif gif;
|
||||||
text/x-vcard vcf;
|
image/jpeg jpeg jpg;
|
||||||
|
image/png png;
|
||||||
|
image/svg+xml svg svgz;
|
||||||
|
image/tiff tif tiff;
|
||||||
|
image/vnd.wap.wbmp wbmp;
|
||||||
|
image/webp webp;
|
||||||
|
image/x-jng jng;
|
||||||
|
video/3gpp 3gpp 3gp;
|
||||||
|
video/mp4 f4v f4p m4v mp4;
|
||||||
|
video/mpeg mpeg mpg;
|
||||||
|
video/ogg ogv;
|
||||||
|
video/quicktime mov;
|
||||||
|
video/webm webm;
|
||||||
|
video/x-flv flv;
|
||||||
|
video/x-mng mng;
|
||||||
|
video/x-ms-asf asx asf;
|
||||||
|
video/x-ms-wmv wmv;
|
||||||
|
video/x-msvideo avi;
|
||||||
|
|
||||||
|
# Serving `.ico` image files with a different media type
|
||||||
|
# prevents Internet Explorer from displaying then as images:
|
||||||
|
# https://github.com/h5bp/html5-boilerplate/commit/37b5fec090d00f38de64b591bcddcb205aadf8ee
|
||||||
|
|
||||||
|
image/x-icon cur ico;
|
||||||
|
|
||||||
|
|
||||||
|
# Microsoft Office
|
||||||
|
|
||||||
|
application/msword doc;
|
||||||
|
application/vnd.ms-excel xls;
|
||||||
|
application/vnd.ms-powerpoint ppt;
|
||||||
|
application/vnd.openxmlformats-officedocument.wordprocessingml.document docx;
|
||||||
|
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx;
|
||||||
|
application/vnd.openxmlformats-officedocument.presentationml.presentation pptx;
|
||||||
|
|
||||||
|
|
||||||
|
# Web fonts
|
||||||
|
|
||||||
|
application/font-woff woff;
|
||||||
|
application/font-woff2 woff2;
|
||||||
|
application/vnd.ms-fontobject eot;
|
||||||
|
|
||||||
|
# Browsers usually ignore the font media types and simply sniff
|
||||||
|
# the bytes to figure out the font type.
|
||||||
|
# https://mimesniff.spec.whatwg.org/#matching-a-font-type-pattern
|
||||||
|
#
|
||||||
|
# However, Blink and WebKit based browsers will show a warning
|
||||||
|
# in the console if the following font types are served with any
|
||||||
|
# other media types.
|
||||||
|
|
||||||
|
application/x-font-ttf ttc ttf;
|
||||||
|
font/opentype otf;
|
||||||
|
|
||||||
|
|
||||||
|
# Other
|
||||||
|
|
||||||
|
application/java-archive jar war ear;
|
||||||
|
application/mac-binhex40 hqx;
|
||||||
|
application/octet-stream bin deb dll dmg exe img iso msi msm msp safariextz;
|
||||||
|
application/pdf pdf;
|
||||||
|
application/postscript ps eps ai;
|
||||||
|
application/rtf rtf;
|
||||||
|
application/vnd.google-earth.kml+xml kml;
|
||||||
|
application/vnd.google-earth.kmz kmz;
|
||||||
|
application/vnd.wap.wmlc wmlc;
|
||||||
|
application/x-7z-compressed 7z;
|
||||||
|
application/x-bb-appworld bbaw;
|
||||||
|
application/x-bittorrent torrent;
|
||||||
|
application/x-chrome-extension crx;
|
||||||
|
application/x-cocoa cco;
|
||||||
|
application/x-java-archive-diff jardiff;
|
||||||
|
application/x-java-jnlp-file jnlp;
|
||||||
|
application/x-makeself run;
|
||||||
|
application/x-opera-extension oex;
|
||||||
|
application/x-perl pl pm;
|
||||||
|
application/x-pilot prc pdb;
|
||||||
|
application/x-rar-compressed rar;
|
||||||
|
application/x-redhat-package-manager rpm;
|
||||||
|
application/x-sea sea;
|
||||||
|
application/x-shockwave-flash swf;
|
||||||
|
application/x-stuffit sit;
|
||||||
|
application/x-tcl tcl tk;
|
||||||
|
application/x-x509-ca-cert der pem crt;
|
||||||
|
application/x-xpinstall xpi;
|
||||||
|
application/xhtml+xml xhtml;
|
||||||
|
application/xslt+xml xsl;
|
||||||
|
application/zip zip;
|
||||||
|
text/css css;
|
||||||
|
text/html html htm shtml;
|
||||||
|
text/mathml mml;
|
||||||
|
text/plain txt;
|
||||||
|
text/vcard vcard vcf;
|
||||||
|
text/vnd.rim.location.xloc xloc;
|
||||||
|
text/vnd.sun.j2me.app-descriptor jad;
|
||||||
|
text/vnd.wap.wml wml;
|
||||||
|
text/vtt vtt;
|
||||||
|
text/x-component htc;
|
||||||
|
text/x-vcard vcf;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue