You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

136 lines
5.3 KiB

  1. types {
  2. # Data interchange
  3. application/atom+xml atom;
  4. application/json json map topojson;
  5. application/ld+json jsonld;
  6. application/rss+xml rss;
  7. application/vnd.geo+json geojson;
  8. application/xml rdf xml;
  9. # JavaScript
  10. # Normalize to standard type.
  11. # https://tools.ietf.org/html/rfc4329#section-7.2
  12. application/javascript js;
  13. # Manifest files
  14. application/manifest+json webmanifest;
  15. application/x-web-app-manifest+json webapp;
  16. text/cache-manifest appcache;
  17. # Media files
  18. audio/midi mid midi kar;
  19. audio/mp4 aac f4a f4b m4a;
  20. audio/mpeg mp3;
  21. audio/ogg oga ogg opus;
  22. audio/x-realaudio ra;
  23. audio/x-wav wav;
  24. image/bmp bmp;
  25. image/gif gif;
  26. image/jpeg jpeg jpg;
  27. image/png png;
  28. image/svg+xml svg svgz;
  29. image/tiff tif tiff;
  30. image/vnd.wap.wbmp wbmp;
  31. image/webp webp;
  32. image/x-jng jng;
  33. video/3gpp 3gp 3gpp;
  34. video/mp4 f4p f4v m4v mp4;
  35. video/mpeg mpeg mpg;
  36. video/ogg ogv;
  37. video/quicktime mov;
  38. video/webm webm;
  39. video/x-flv flv;
  40. video/x-mng mng;
  41. video/x-ms-asf asf asx;
  42. video/x-ms-wmv wmv;
  43. video/x-msvideo avi;
  44. # Serving `.ico` image files with a different media type
  45. # prevents Internet Explorer from displaying then as images:
  46. # https://github.com/h5bp/html5-boilerplate/commit/37b5fec090d00f38de64b591bcddcb205aadf8ee
  47. image/x-icon cur ico;
  48. # Microsoft Office
  49. application/msword doc;
  50. application/vnd.ms-excel xls;
  51. application/vnd.ms-powerpoint ppt;
  52. application/vnd.openxmlformats-officedocument.wordprocessingml.document docx;
  53. application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx;
  54. application/vnd.openxmlformats-officedocument.presentationml.presentation pptx;
  55. # Web fonts
  56. application/font-woff woff;
  57. application/font-woff2 woff2;
  58. application/vnd.ms-fontobject eot;
  59. # Browsers usually ignore the font media types and simply sniff
  60. # the bytes to figure out the font type.
  61. # https://mimesniff.spec.whatwg.org/#matching-a-font-type-pattern
  62. #
  63. # However, Blink and WebKit based browsers will show a warning
  64. # in the console if the following font types are served with any
  65. # other media types.
  66. application/x-font-ttf ttc ttf;
  67. font/opentype otf;
  68. # Other
  69. application/java-archive ear jar war;
  70. application/mac-binhex40 hqx;
  71. application/octet-stream bin deb dll dmg exe img iso msi msm msp safariextz;
  72. application/pdf pdf;
  73. application/postscript ai eps ps;
  74. application/rtf rtf;
  75. application/vnd.google-earth.kml+xml kml;
  76. application/vnd.google-earth.kmz kmz;
  77. application/vnd.wap.wmlc wmlc;
  78. application/x-7z-compressed 7z;
  79. application/x-bb-appworld bbaw;
  80. application/x-bittorrent torrent;
  81. application/x-chrome-extension crx;
  82. application/x-cocoa cco;
  83. application/x-java-archive-diff jardiff;
  84. application/x-java-jnlp-file jnlp;
  85. application/x-makeself run;
  86. application/x-opera-extension oex;
  87. application/x-perl pl pm;
  88. application/x-pilot pdb prc;
  89. application/x-rar-compressed rar;
  90. application/x-redhat-package-manager rpm;
  91. application/x-sea sea;
  92. application/x-shockwave-flash swf;
  93. application/x-stuffit sit;
  94. application/x-tcl tcl tk;
  95. application/x-x509-ca-cert crt der pem;
  96. application/x-xpinstall xpi;
  97. application/xhtml+xml xhtml;
  98. application/xslt+xml xsl;
  99. application/zip zip;
  100. text/css css;
  101. text/html htm html shtml;
  102. text/mathml mml;
  103. text/plain txt;
  104. text/vcard vcard vcf;
  105. text/vnd.rim.location.xloc xloc;
  106. text/vnd.sun.j2me.app-descriptor jad;
  107. text/vnd.wap.wml wml;
  108. text/vtt vtt;
  109. text/x-component htc;
  110. }