Annotation of embedaddon/lighttpd/doc/config/conf.d/mime.conf, revision 1.1.1.2
1.1.1.2 ! misho 1: # created by create-mime.conf.pl
! 2:
1.1 misho 3: #######################################################################
4: ##
5: ## MimeType handling
6: ## -------------------
7: ##
1.1.1.2 ! misho 8: ## https://redmine.lighttpd.net/projects/lighttpd/wiki/Mimetype_assignDetails
! 9:
! 10: ##
! 11: ## mimetype.xattr-name
! 12: ## Set the extended file attribute name used to obtain mime type
! 13: ## (must also set mimetype.use-xattr = "enable")
1.1 misho 14: ##
1.1.1.2 ! misho 15: ## Default value is "Content-Type"
1.1 misho 16: ##
1.1.1.2 ! misho 17: ## freedesktop.org Shared MIME-info Database specification suggests
! 18: ## user-defined value ("user.mime_type") as name for extended file attribute
! 19: #mimetype.xattr-name = "user.mime_type"
1.1 misho 20:
21: ##
1.1.1.2 ! misho 22: ## Use extended attribute named in mimetype.xattr-name (default "Content-Type")
! 23: ## to obtain mime type if possible
1.1 misho 24: ##
1.1.1.2 ! misho 25: ## Disabled by default
! 26: ##
! 27: #mimetype.use-xattr = "enable"
1.1 misho 28:
1.1.1.2 ! misho 29: ##
! 30: ## mimetype ("Content-Type" HTTP header) mapping for static file handling
! 31: ##
! 32: ## The first matching suffix is used. If no mapping is found
! 33: ## 'application/octet-stream' is used, and caching (etag/last-modified handling)
! 34: ## is disabled to prevent clients from caching "unknown" mime types.
! 35: ##
! 36: ## Therefore the last mapping is:
! 37: ## "" => "application/octet-stream"
! 38: ## This matches all extensions and acts as default mime type, and enables
! 39: ## caching for those.
! 40: mimetype.assign = (
! 41: ".pcf.Z" => "application/x-font-pcf",
! 42: ".tar.bz2" => "application/x-gtar-compressed",
! 43: ".tar.gz" => "application/x-gtar-compressed",
! 44: ".ez" => "application/andrew-inset",
! 45: ".anx" => "application/annodex",
! 46: ".atom" => "application/atom+xml",
! 47: ".atomcat" => "application/atomcat+xml",
! 48: ".atomsrv" => "application/atomserv+xml",
! 49: ".lin" => "application/bbolin",
! 50: ".cu" => "application/cu-seeme",
! 51: ".davmount" => "application/davmount+xml",
! 52: ".dcm" => "application/dicom",
! 53: ".tsp" => "application/dsptype",
! 54: ".es" => "application/ecmascript",
! 55: ".otf" => "application/font-sfnt",
! 56: ".ttf" => "application/font-sfnt",
! 57: ".pfr" => "application/font-tdpfr",
! 58: ".woff" => "application/font-woff",
! 59: ".spl" => "application/futuresplash",
! 60: ".gz" => "application/gzip",
! 61: ".hta" => "application/hta",
! 62: ".jar" => "application/java-archive",
! 63: ".ser" => "application/java-serialized-object",
! 64: ".class" => "application/java-vm",
! 65: ".js" => "application/javascript",
! 66: ".json" => "application/json",
! 67: ".m3g" => "application/m3g",
! 68: ".hqx" => "application/mac-binhex40",
! 69: ".cpt" => "application/mac-compactpro",
! 70: ".nb" => "application/mathematica",
! 71: ".nbp" => "application/mathematica",
! 72: ".mbox" => "application/mbox",
! 73: ".mdb" => "application/msaccess",
! 74: ".doc" => "application/msword",
! 75: ".dot" => "application/msword",
! 76: ".mxf" => "application/mxf",
! 77: ".asn" => "application/octet-stream",
! 78: ".bin" => "application/octet-stream",
! 79: ".ent" => "application/octet-stream",
! 80: ".oda" => "application/oda",
! 81: ".opf" => "application/oebps-package+xml",
! 82: ".ogx" => "application/ogg",
! 83: ".one" => "application/onenote",
! 84: ".onepkg" => "application/onenote",
! 85: ".onetmp" => "application/onenote",
! 86: ".onetoc2" => "application/onenote",
! 87: ".pdf" => "application/pdf",
! 88: ".pgp" => "application/pgp-encrypted",
! 89: ".key" => "application/pgp-keys",
! 90: ".sig" => "application/pgp-signature",
! 91: ".prf" => "application/pics-rules",
! 92: ".ai" => "application/postscript",
! 93: ".eps" => "application/postscript",
! 94: ".eps2" => "application/postscript",
! 95: ".eps3" => "application/postscript",
! 96: ".epsf" => "application/postscript",
! 97: ".epsi" => "application/postscript",
! 98: ".ps" => "application/postscript",
! 99: ".rar" => "application/rar",
! 100: ".rdf" => "application/rdf+xml",
! 101: ".rtf" => "application/rtf",
! 102: ".stl" => "application/sla",
! 103: ".smi" => "application/smil+xml",
! 104: ".smil" => "application/smil+xml",
! 105: ".xht" => "application/xhtml+xml",
! 106: ".xhtml" => "application/xhtml+xml",
! 107: ".xml" => "application/xml",
! 108: ".xsd" => "application/xml",
! 109: ".dtd" => "application/xml-dtd",
! 110: ".xsl" => "application/xslt+xml",
! 111: ".xslt" => "application/xslt+xml",
! 112: ".xspf" => "application/xspf+xml",
! 113: ".zip" => "application/zip",
! 114: ".apk" => "application/vnd.android.package-archive",
! 115: ".cdy" => "application/vnd.cinderella",
! 116: ".ddeb" => "application/vnd.debian.binary-package",
! 117: ".deb" => "application/vnd.debian.binary-package",
! 118: ".udeb" => "application/vnd.debian.binary-package",
! 119: ".sfd" => "application/vnd.font-fontforge-sfd",
! 120: ".kml" => "application/vnd.google-earth.kml+xml",
! 121: ".kmz" => "application/vnd.google-earth.kmz",
! 122: ".xul" => "application/vnd.mozilla.xul+xml",
! 123: ".xlb" => "application/vnd.ms-excel",
! 124: ".xls" => "application/vnd.ms-excel",
! 125: ".xlt" => "application/vnd.ms-excel",
! 126: ".xlam" => "application/vnd.ms-excel.addin.macroEnabled.12",
! 127: ".xlsb" => "application/vnd.ms-excel.sheet.binary.macroEnabled.12",
! 128: ".xlsm" => "application/vnd.ms-excel.sheet.macroEnabled.12",
! 129: ".xltm" => "application/vnd.ms-excel.template.macroEnabled.12",
! 130: ".eot" => "application/vnd.ms-fontobject",
! 131: ".thmx" => "application/vnd.ms-officetheme",
! 132: ".cat" => "application/vnd.ms-pki.seccat",
! 133: ".pps" => "application/vnd.ms-powerpoint",
! 134: ".ppt" => "application/vnd.ms-powerpoint",
! 135: ".ppam" => "application/vnd.ms-powerpoint.addin.macroEnabled.12",
! 136: ".pptm" => "application/vnd.ms-powerpoint.presentation.macroEnabled.12",
! 137: ".sldm" => "application/vnd.ms-powerpoint.slide.macroEnabled.12",
! 138: ".ppsm" => "application/vnd.ms-powerpoint.slideshow.macroEnabled.12",
! 139: ".potm" => "application/vnd.ms-powerpoint.template.macroEnabled.12",
! 140: ".docm" => "application/vnd.ms-word.document.macroEnabled.12",
! 141: ".dotm" => "application/vnd.ms-word.template.macroEnabled.12",
! 142: ".odc" => "application/vnd.oasis.opendocument.chart",
! 143: ".odb" => "application/vnd.oasis.opendocument.database",
! 144: ".odf" => "application/vnd.oasis.opendocument.formula",
! 145: ".odg" => "application/vnd.oasis.opendocument.graphics",
! 146: ".otg" => "application/vnd.oasis.opendocument.graphics-template",
! 147: ".odi" => "application/vnd.oasis.opendocument.image",
! 148: ".odp" => "application/vnd.oasis.opendocument.presentation",
! 149: ".otp" => "application/vnd.oasis.opendocument.presentation-template",
! 150: ".ods" => "application/vnd.oasis.opendocument.spreadsheet",
! 151: ".ots" => "application/vnd.oasis.opendocument.spreadsheet-template",
! 152: ".odt" => "application/vnd.oasis.opendocument.text",
! 153: ".odm" => "application/vnd.oasis.opendocument.text-master",
! 154: ".ott" => "application/vnd.oasis.opendocument.text-template",
! 155: ".oth" => "application/vnd.oasis.opendocument.text-web",
! 156: ".pptx" => "application/vnd.openxmlformats-officedocument.presentationml.presentation",
! 157: ".sldx" => "application/vnd.openxmlformats-officedocument.presentationml.slide",
! 158: ".ppsx" => "application/vnd.openxmlformats-officedocument.presentationml.slideshow",
! 159: ".potx" => "application/vnd.openxmlformats-officedocument.presentationml.template",
! 160: ".xlsx" => "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
! 161: ".xltx" => "application/vnd.openxmlformats-officedocument.spreadsheetml.template",
! 162: ".docx" => "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
! 163: ".dotx" => "application/vnd.openxmlformats-officedocument.wordprocessingml.template",
! 164: ".cod" => "application/vnd.rim.cod",
! 165: ".mmf" => "application/vnd.smaf",
! 166: ".sdc" => "application/vnd.stardivision.calc",
! 167: ".sds" => "application/vnd.stardivision.chart",
! 168: ".sda" => "application/vnd.stardivision.draw",
! 169: ".sdd" => "application/vnd.stardivision.impress",
! 170: ".sdf" => "application/vnd.stardivision.math",
! 171: ".sdw" => "application/vnd.stardivision.writer",
! 172: ".sgl" => "application/vnd.stardivision.writer-global",
! 173: ".sxc" => "application/vnd.sun.xml.calc",
! 174: ".stc" => "application/vnd.sun.xml.calc.template",
! 175: ".sxd" => "application/vnd.sun.xml.draw",
! 176: ".std" => "application/vnd.sun.xml.draw.template",
! 177: ".sxi" => "application/vnd.sun.xml.impress",
! 178: ".sti" => "application/vnd.sun.xml.impress.template",
! 179: ".sxm" => "application/vnd.sun.xml.math",
! 180: ".sxw" => "application/vnd.sun.xml.writer",
! 181: ".sxg" => "application/vnd.sun.xml.writer.global",
! 182: ".stw" => "application/vnd.sun.xml.writer.template",
! 183: ".sis" => "application/vnd.symbian.install",
! 184: ".cap" => "application/vnd.tcpdump.pcap",
! 185: ".pcap" => "application/vnd.tcpdump.pcap",
! 186: ".vsd" => "application/vnd.visio",
! 187: ".vss" => "application/vnd.visio",
! 188: ".vst" => "application/vnd.visio",
! 189: ".vsw" => "application/vnd.visio",
! 190: ".wbxml" => "application/vnd.wap.wbxml",
! 191: ".wmlc" => "application/vnd.wap.wmlc",
! 192: ".wmlsc" => "application/vnd.wap.wmlscriptc",
! 193: ".wpd" => "application/vnd.wordperfect",
! 194: ".wp5" => "application/vnd.wordperfect5.1",
! 195: ".wk" => "application/x-123",
! 196: ".7z" => "application/x-7z-compressed",
! 197: ".abw" => "application/x-abiword",
! 198: ".dmg" => "application/x-apple-diskimage",
! 199: ".bcpio" => "application/x-bcpio",
! 200: ".torrent" => "application/x-bittorrent",
! 201: ".bz2" => "application/x-bzip",
! 202: ".cab" => "application/x-cab",
! 203: ".cbr" => "application/x-cbr",
! 204: ".cbz" => "application/x-cbz",
! 205: ".cda" => "application/x-cdf",
! 206: ".cdf" => "application/x-cdf",
! 207: ".vcd" => "application/x-cdlink",
! 208: ".pgn" => "application/x-chess-pgn",
! 209: ".mph" => "application/x-comsol",
! 210: ".cpio" => "application/x-cpio",
! 211: ".dcr" => "application/x-director",
! 212: ".dir" => "application/x-director",
! 213: ".dxr" => "application/x-director",
! 214: ".dms" => "application/x-dms",
! 215: ".wad" => "application/x-doom",
! 216: ".dvi" => "application/x-dvi",
! 217: ".gsf" => "application/x-font",
! 218: ".pfa" => "application/x-font",
! 219: ".pfb" => "application/x-font",
! 220: ".pcf" => "application/x-font-pcf",
! 221: ".mm" => "application/x-freemind",
! 222: ".gan" => "application/x-ganttproject",
! 223: ".gnumeric" => "application/x-gnumeric",
! 224: ".sgf" => "application/x-go-sgf",
! 225: ".gcf" => "application/x-graphing-calculator",
! 226: ".gtar" => "application/x-gtar",
! 227: ".taz" => "application/x-gtar-compressed",
! 228: ".tbz" => "application/x-gtar-compressed",
! 229: ".tgz" => "application/x-gtar-compressed",
! 230: ".hdf" => "application/x-hdf",
! 231: ".hwp" => "application/x-hwp",
! 232: ".ica" => "application/x-ica",
! 233: ".info" => "application/x-info",
! 234: ".ins" => "application/x-internet-signup",
! 235: ".isp" => "application/x-internet-signup",
! 236: ".iii" => "application/x-iphone",
! 237: ".iso" => "application/x-iso9660-image",
! 238: ".jam" => "application/x-jam",
! 239: ".jnlp" => "application/x-java-jnlp-file",
! 240: ".jmz" => "application/x-jmol",
! 241: ".chrt" => "application/x-kchart",
! 242: ".kil" => "application/x-killustrator",
! 243: ".skd" => "application/x-koan",
! 244: ".skm" => "application/x-koan",
! 245: ".skp" => "application/x-koan",
! 246: ".skt" => "application/x-koan",
! 247: ".kpr" => "application/x-kpresenter",
! 248: ".kpt" => "application/x-kpresenter",
! 249: ".ksp" => "application/x-kspread",
! 250: ".kwd" => "application/x-kword",
! 251: ".kwt" => "application/x-kword",
! 252: ".latex" => "application/x-latex",
! 253: ".lha" => "application/x-lha",
! 254: ".lyx" => "application/x-lyx",
! 255: ".lzh" => "application/x-lzh",
! 256: ".lzx" => "application/x-lzx",
! 257: ".book" => "application/x-maker",
! 258: ".fb" => "application/x-maker",
! 259: ".fbdoc" => "application/x-maker",
! 260: ".fm" => "application/x-maker",
! 261: ".frame" => "application/x-maker",
! 262: ".frm" => "application/x-maker",
! 263: ".maker" => "application/x-maker",
! 264: ".mif" => "application/x-mif",
! 265: ".m3u8" => "application/x-mpegURL",
! 266: ".wmd" => "application/x-ms-wmd",
! 267: ".wmz" => "application/x-ms-wmz",
! 268: ".bat" => "application/x-msdos-program",
! 269: ".com" => "application/x-msdos-program",
! 270: ".dll" => "application/x-msdos-program",
! 271: ".exe" => "application/x-msdos-program",
! 272: ".msi" => "application/x-msi",
! 273: ".nc" => "application/x-netcdf",
! 274: ".pac" => "application/x-ns-proxy-autoconfig",
! 275: ".nwc" => "application/x-nwc",
! 276: ".o" => "application/x-object",
! 277: ".oza" => "application/x-oz-application",
! 278: ".p7r" => "application/x-pkcs7-certreqresp",
! 279: ".crl" => "application/x-pkcs7-crl",
! 280: ".pyc" => "application/x-python-code",
! 281: ".pyo" => "application/x-python-code",
! 282: ".qgs" => "application/x-qgis",
! 283: ".shp" => "application/x-qgis",
! 284: ".shx" => "application/x-qgis",
! 285: ".qtl" => "application/x-quicktimeplayer",
! 286: ".rdp" => "application/x-rdp",
! 287: ".rpm" => "application/x-redhat-package-manager",
! 288: ".rss" => "application/x-rss+xml",
! 289: ".rb" => "application/x-ruby",
! 290: ".sce" => "application/x-scilab",
! 291: ".sci" => "application/x-scilab",
! 292: ".xcos" => "application/x-scilab-xcos",
! 293: ".shar" => "application/x-shar",
! 294: ".swf" => "application/x-shockwave-flash",
! 295: ".swfl" => "application/x-shockwave-flash",
! 296: ".scr" => "application/x-silverlight",
! 297: ".sql" => "application/x-sql",
! 298: ".sit" => "application/x-stuffit",
! 299: ".sitx" => "application/x-stuffit",
! 300: ".sv4cpio" => "application/x-sv4cpio",
! 301: ".sv4crc" => "application/x-sv4crc",
! 302: ".tar" => "application/x-tar",
! 303: ".gf" => "application/x-tex-gf",
! 304: ".pk" => "application/x-tex-pk",
! 305: ".texi" => "application/x-texinfo",
! 306: ".texinfo" => "application/x-texinfo",
! 307: ".roff" => "application/x-troff",
! 308: ".t" => "application/x-troff",
! 309: ".tr" => "application/x-troff",
! 310: ".man" => "application/x-troff-man",
! 311: ".me" => "application/x-troff-me",
! 312: ".ms" => "application/x-troff-ms",
! 313: ".ustar" => "application/x-ustar",
! 314: ".src" => "application/x-wais-source",
! 315: ".wz" => "application/x-wingz",
! 316: ".crt" => "application/x-x509-ca-cert",
! 317: ".xcf" => "application/x-xcf",
! 318: ".fig" => "application/x-xfig",
! 319: ".xpi" => "application/x-xpinstall",
! 320: ".xz" => "application/x-xz",
! 321: ".amr" => "audio/amr",
! 322: ".awb" => "audio/amr-wb",
! 323: ".axa" => "audio/annodex",
! 324: ".au" => "audio/basic",
! 325: ".snd" => "audio/basic",
! 326: ".csd" => "audio/csound",
! 327: ".orc" => "audio/csound",
! 328: ".sco" => "audio/csound",
! 329: ".flac" => "audio/flac",
! 330: ".kar" => "audio/midi",
! 331: ".mid" => "audio/midi",
! 332: ".midi" => "audio/midi",
! 333: ".m4a" => "audio/mpeg",
! 334: ".mp2" => "audio/mpeg",
! 335: ".mp3" => "audio/mpeg",
! 336: ".mpega" => "audio/mpeg",
! 337: ".mpga" => "audio/mpeg",
! 338: ".m3u" => "audio/mpegurl",
! 339: ".oga" => "audio/ogg",
! 340: ".ogg" => "audio/ogg",
! 341: ".opus" => "audio/ogg",
! 342: ".spx" => "audio/ogg",
! 343: ".sid" => "audio/prs.sid",
! 344: ".aif" => "audio/x-aiff",
! 345: ".aifc" => "audio/x-aiff",
! 346: ".aiff" => "audio/x-aiff",
! 347: ".gsm" => "audio/x-gsm",
! 348: ".wax" => "audio/x-ms-wax",
! 349: ".wma" => "audio/x-ms-wma",
! 350: ".ra" => "audio/x-realaudio",
! 351: ".ram" => "audio/x-realaudio",
! 352: ".rm" => "audio/x-realaudio",
! 353: ".pls" => "audio/x-scpls",
! 354: ".sd2" => "audio/x-sd2",
! 355: ".wav" => "audio/x-wav",
! 356: ".alc" => "chemical/x-alchemy",
! 357: ".cac" => "chemical/x-cache",
! 358: ".cache" => "chemical/x-cache",
! 359: ".csf" => "chemical/x-cache-csf",
! 360: ".cascii" => "chemical/x-cactvs-binary",
! 361: ".cbin" => "chemical/x-cactvs-binary",
! 362: ".ctab" => "chemical/x-cactvs-binary",
! 363: ".cdx" => "chemical/x-cdx",
! 364: ".cer" => "chemical/x-cerius",
! 365: ".c3d" => "chemical/x-chem3d",
! 366: ".chm" => "chemical/x-chemdraw",
! 367: ".cif" => "chemical/x-cif",
! 368: ".cmdf" => "chemical/x-cmdf",
! 369: ".cml" => "chemical/x-cml",
! 370: ".cpa" => "chemical/x-compass",
! 371: ".bsd" => "chemical/x-crossfire",
! 372: ".csm" => "chemical/x-csml",
! 373: ".csml" => "chemical/x-csml",
! 374: ".ctx" => "chemical/x-ctx",
! 375: ".cef" => "chemical/x-cxf",
! 376: ".cxf" => "chemical/x-cxf",
! 377: ".emb" => "chemical/x-embl-dl-nucleotide",
! 378: ".embl" => "chemical/x-embl-dl-nucleotide",
! 379: ".spc" => "chemical/x-galactic-spc",
! 380: ".gam" => "chemical/x-gamess-input",
! 381: ".gamin" => "chemical/x-gamess-input",
! 382: ".inp" => "chemical/x-gamess-input",
! 383: ".fch" => "chemical/x-gaussian-checkpoint",
! 384: ".fchk" => "chemical/x-gaussian-checkpoint",
! 385: ".cub" => "chemical/x-gaussian-cube",
! 386: ".gau" => "chemical/x-gaussian-input",
! 387: ".gjc" => "chemical/x-gaussian-input",
! 388: ".gjf" => "chemical/x-gaussian-input",
! 389: ".gal" => "chemical/x-gaussian-log",
! 390: ".gcg" => "chemical/x-gcg8-sequence",
! 391: ".gen" => "chemical/x-genbank",
! 392: ".hin" => "chemical/x-hin",
! 393: ".ist" => "chemical/x-isostar",
! 394: ".istr" => "chemical/x-isostar",
! 395: ".dx" => "chemical/x-jcamp-dx",
! 396: ".jdx" => "chemical/x-jcamp-dx",
! 397: ".kin" => "chemical/x-kinemage",
! 398: ".mcm" => "chemical/x-macmolecule",
! 399: ".mmd" => "chemical/x-macromodel-input",
! 400: ".mmod" => "chemical/x-macromodel-input",
! 401: ".mol" => "chemical/x-mdl-molfile",
! 402: ".rd" => "chemical/x-mdl-rdfile",
! 403: ".rxn" => "chemical/x-mdl-rxnfile",
! 404: ".sd" => "chemical/x-mdl-sdfile",
! 405: ".tgf" => "chemical/x-mdl-tgf",
! 406: ".mcif" => "chemical/x-mmcif",
! 407: ".mol2" => "chemical/x-mol2",
! 408: ".b" => "chemical/x-molconn-Z",
! 409: ".gpt" => "chemical/x-mopac-graph",
! 410: ".mop" => "chemical/x-mopac-input",
! 411: ".mopcrt" => "chemical/x-mopac-input",
! 412: ".mpc" => "chemical/x-mopac-input",
! 413: ".zmt" => "chemical/x-mopac-input",
! 414: ".moo" => "chemical/x-mopac-out",
! 415: ".mvb" => "chemical/x-mopac-vib",
! 416: ".prt" => "chemical/x-ncbi-asn1-ascii",
! 417: ".aso" => "chemical/x-ncbi-asn1-binary",
! 418: ".val" => "chemical/x-ncbi-asn1-binary",
! 419: ".pdb" => "chemical/x-pdb",
! 420: ".ros" => "chemical/x-rosdal",
! 421: ".sw" => "chemical/x-swissprot",
! 422: ".vms" => "chemical/x-vamas-iso14976",
! 423: ".vmd" => "chemical/x-vmd",
! 424: ".xtel" => "chemical/x-xtel",
! 425: ".xyz" => "chemical/x-xyz",
! 426: ".gif" => "image/gif",
! 427: ".ief" => "image/ief",
! 428: ".jp2" => "image/jp2",
! 429: ".jpg2" => "image/jp2",
! 430: ".jpe" => "image/jpeg",
! 431: ".jpeg" => "image/jpeg",
! 432: ".jpg" => "image/jpeg",
! 433: ".jpm" => "image/jpm",
! 434: ".jpf" => "image/jpx",
! 435: ".jpx" => "image/jpx",
! 436: ".pcx" => "image/pcx",
! 437: ".png" => "image/png",
! 438: ".svg" => "image/svg+xml",
! 439: ".svgz" => "image/svg+xml",
! 440: ".tif" => "image/tiff",
! 441: ".tiff" => "image/tiff",
! 442: ".djv" => "image/vnd.djvu",
! 443: ".djvu" => "image/vnd.djvu",
! 444: ".ico" => "image/vnd.microsoft.icon",
! 445: ".wbmp" => "image/vnd.wap.wbmp",
! 446: ".cr2" => "image/x-canon-cr2",
! 447: ".crw" => "image/x-canon-crw",
! 448: ".ras" => "image/x-cmu-raster",
! 449: ".cdr" => "image/x-coreldraw",
! 450: ".pat" => "image/x-coreldrawpattern",
! 451: ".cdt" => "image/x-coreldrawtemplate",
! 452: ".erf" => "image/x-epson-erf",
! 453: ".art" => "image/x-jg",
! 454: ".jng" => "image/x-jng",
! 455: ".bmp" => "image/x-ms-bmp",
! 456: ".nef" => "image/x-nikon-nef",
! 457: ".orf" => "image/x-olympus-orf",
! 458: ".psd" => "image/x-photoshop",
! 459: ".pnm" => "image/x-portable-anymap",
! 460: ".pbm" => "image/x-portable-bitmap",
! 461: ".pgm" => "image/x-portable-graymap",
! 462: ".ppm" => "image/x-portable-pixmap",
! 463: ".rgb" => "image/x-rgb",
! 464: ".xbm" => "image/x-xbitmap",
! 465: ".xpm" => "image/x-xpixmap",
! 466: ".xwd" => "image/x-xwindowdump",
! 467: ".eml" => "message/rfc822",
! 468: ".iges" => "model/iges",
! 469: ".igs" => "model/iges",
! 470: ".mesh" => "model/mesh",
! 471: ".msh" => "model/mesh",
! 472: ".silo" => "model/mesh",
! 473: ".vrml" => "model/vrml",
! 474: ".wrl" => "model/vrml",
! 475: ".x3db" => "model/x3d+binary",
! 476: ".x3dv" => "model/x3d+vrml",
! 477: ".x3d" => "model/x3d+xml",
! 478: ".appcache" => "text/cache-manifest",
! 479: ".ics" => "text/calendar",
! 480: ".icz" => "text/calendar",
! 481: ".css" => "text/css; charset=utf-8",
! 482: ".csv" => "text/csv; charset=utf-8",
! 483: ".323" => "text/h323",
! 484: ".htm" => "text/html",
! 485: ".html" => "text/html",
! 486: ".shtml" => "text/html",
! 487: ".uls" => "text/iuls",
! 488: ".mml" => "text/mathml",
! 489: ".asc" => "text/plain; charset=utf-8",
! 490: ".brf" => "text/plain; charset=utf-8",
! 491: ".conf" => "text/plain; charset=utf-8",
! 492: ".log" => "text/plain; charset=utf-8",
! 493: ".pot" => "text/plain; charset=utf-8",
! 494: ".spec" => "text/plain; charset=utf-8",
! 495: ".srt" => "text/plain; charset=utf-8",
! 496: ".text" => "text/plain; charset=utf-8",
! 497: ".txt" => "text/plain; charset=utf-8",
! 498: ".rtx" => "text/richtext",
! 499: ".sct" => "text/scriptlet",
! 500: ".wsc" => "text/scriptlet",
! 501: ".tsv" => "text/tab-separated-values",
! 502: ".tm" => "text/texmacs",
! 503: ".ttl" => "text/turtle",
! 504: ".vcard" => "text/vcard",
! 505: ".vcf" => "text/vcard",
! 506: ".jad" => "text/vnd.sun.j2me.app-descriptor",
! 507: ".wml" => "text/vnd.wap.wml",
! 508: ".wmls" => "text/vnd.wap.wmlscript",
! 509: ".bib" => "text/x-bibtex; charset=utf-8",
! 510: ".boo" => "text/x-boo; charset=utf-8",
! 511: ".h++" => "text/x-c++hdr; charset=utf-8",
! 512: ".hh" => "text/x-c++hdr; charset=utf-8",
! 513: ".hpp" => "text/x-c++hdr; charset=utf-8",
! 514: ".hxx" => "text/x-c++hdr; charset=utf-8",
! 515: ".c++" => "text/x-c++src; charset=utf-8",
! 516: ".cc" => "text/x-c++src; charset=utf-8",
! 517: ".cpp" => "text/x-c++src; charset=utf-8",
! 518: ".cxx" => "text/x-c++src; charset=utf-8",
! 519: ".h" => "text/x-chdr; charset=utf-8",
! 520: ".htc" => "text/x-component",
! 521: ".csh" => "text/x-csh; charset=utf-8",
! 522: ".c" => "text/x-csrc; charset=utf-8",
! 523: ".diff" => "text/x-diff; charset=utf-8",
! 524: ".patch" => "text/x-diff; charset=utf-8",
! 525: ".d" => "text/x-dsrc; charset=utf-8",
! 526: ".hs" => "text/x-haskell; charset=utf-8",
! 527: ".java" => "text/x-java; charset=utf-8",
! 528: ".ly" => "text/x-lilypond; charset=utf-8",
! 529: ".lhs" => "text/x-literate-haskell; charset=utf-8",
! 530: ".moc" => "text/x-moc; charset=utf-8",
! 531: ".p" => "text/x-pascal; charset=utf-8",
! 532: ".pas" => "text/x-pascal; charset=utf-8",
! 533: ".gcd" => "text/x-pcs-gcd",
! 534: ".pl" => "text/x-perl; charset=utf-8",
! 535: ".pm" => "text/x-perl; charset=utf-8",
! 536: ".py" => "text/x-python; charset=utf-8",
! 537: ".scala" => "text/x-scala; charset=utf-8",
! 538: ".etx" => "text/x-setext",
! 539: ".sfv" => "text/x-sfv",
! 540: ".sh" => "text/x-sh; charset=utf-8",
! 541: ".tcl" => "text/x-tcl; charset=utf-8",
! 542: ".tk" => "text/x-tcl; charset=utf-8",
! 543: ".cls" => "text/x-tex; charset=utf-8",
! 544: ".ltx" => "text/x-tex; charset=utf-8",
! 545: ".sty" => "text/x-tex; charset=utf-8",
! 546: ".tex" => "text/x-tex; charset=utf-8",
! 547: ".vcs" => "text/x-vcalendar",
! 548: ".3gp" => "video/3gpp",
! 549: ".ts" => "video/MP2T",
! 550: ".axv" => "video/annodex",
! 551: ".dl" => "video/dl",
! 552: ".dif" => "video/dv",
! 553: ".dv" => "video/dv",
! 554: ".fli" => "video/fli",
! 555: ".gl" => "video/gl",
! 556: ".mp4" => "video/mp4",
! 557: ".mpe" => "video/mpeg",
! 558: ".mpeg" => "video/mpeg",
! 559: ".mpg" => "video/mpeg",
! 560: ".ogv" => "video/ogg",
! 561: ".mov" => "video/quicktime",
! 562: ".qt" => "video/quicktime",
! 563: ".webm" => "video/webm",
! 564: ".mxu" => "video/vnd.mpegurl",
! 565: ".flv" => "video/x-flv",
! 566: ".lsf" => "video/x-la-asf",
! 567: ".lsx" => "video/x-la-asf",
! 568: ".mkv" => "video/x-matroska",
! 569: ".mpv" => "video/x-matroska",
! 570: ".mng" => "video/x-mng",
! 571: ".asf" => "video/x-ms-asf",
! 572: ".asx" => "video/x-ms-asf",
! 573: ".wm" => "video/x-ms-wm",
! 574: ".wmv" => "video/x-ms-wmv",
! 575: ".wmx" => "video/x-ms-wmx",
! 576: ".wvx" => "video/x-ms-wvx",
! 577: ".avi" => "video/x-msvideo",
! 578: ".movie" => "video/x-sgi-movie",
! 579: ".ice" => "x-conference/x-cooltalk",
! 580: ".sisx" => "x-epoc/x-sisx-app",
! 581: ".vrm" => "x-world/x-vrml",
! 582: "README" => "text/plain; charset=utf-8",
! 583: "Makefile" => "text/x-makefile; charset=utf-8",
1.1 misho 584:
1.1.1.2 ! misho 585: # enable caching for unknown mime types:
! 586: "" => "application/octet-stream"
! 587: )
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>