MIME type categories
MIME types are grouped into eight top-level categories, and each one describes a different class of content that a browser or client knows how to interpret.1 The category prefix in a MIME string tells you, at a glance, whether you are dealing with data, media, text, or a composite message.
Media and document types
application/ is the largest category, covering structured data, executables, archives, and API payload formats ranging from JSON and PDF to ZIP archives and WebAssembly. By contrast, audio/ and video/ cover time-based media: audio/mpeg, Opus, AAC, FLAC, and WAV are the most common audio containers, while MP4 with H.264 remains the most compatible web video format and WebM serves as the open alternative.
image/ covers still images and vector graphics, where AVIF and WebP offer the best compression for modern browsers and SVG (image/svg+xml) is the standard for scalable vector artwork. Because the image category spans both raster and vector formats, choosing the right MIME string matters when you are configuring server caching headers or setting up content negotiation for responsive image delivery. Serving an AVIF file as image/jpeg, for instance, causes some browsers to reject the decode entirely.
Fonts, models, text, and composites
For downloadable fonts, font/ is the category to check: WOFF2 (font/woff2) is the preferred format because it uses Brotli compression and is supported by all modern browsers,2 while the older EOT format (application/vnd.ms-fontobject) is deprecated. Older registrations like application/font-woff and application/font-sfnt have also been moved into the font/ top-level type under RFC 8081, which reorganized font media types into their own category to avoid mixing them with generic application/ types.
The remaining categories serve more specialized roles. model/ covers 3D scene and geometry formats such as glTF, GLB, STL, and USDZ, while text/ groups human-readable formats with specific syntax like HTML, CSS, CSV, and Markdown. Finally, multipart/ covers composite messages: multipart/form-data is required for HTML file uploads,3 and multipart/byteranges appears in 206 Partial Content responses.4
Server configuration
Web servers ship with a built-in MIME type table that covers most common types, but you still need to add explicit configuration when serving newer formats such as WebAssembly, modern image formats like AVIF and WebP, WOFF2 fonts, and 3D assets like glTF. Without those entries, the server falls back to a generic Content-Type and the browser may refuse to handle the file correctly.
Nginx and Apache
In Nginx, you add or override
entries with a types block placed inside http {}
or server {}, and the snippet format shown in each detail panel
is the exact directive to paste into that block.5
In Apache, the equivalent is the
AddType directive, which works in httpd.conf, a virtual host
config, or a per-directory .htaccess file.6
Both servers merge custom entries with their built-in table, so you only need to declare
the types that are missing or that you want to override.
A concrete mapping ties the abstract rule to a real config line. The
.wasm extension maps to application/wasm, the
type IANA registers for WebAssembly binaries. Adding it to
an Nginx types block looks like types { application/wasm wasm; }
placed inside the http {} or server {} block
covering your site. Apache's equivalent is a single line,
AddType application/wasm .wasm, dropped into
httpd.conf, a virtual host block, or a per-directory
.htaccess file.
Caddy
For Caddy v1, the mime
directive maps an extension to a MIME type directly inside the Caddyfile, which
keeps the rule visible alongside the rest of your site configuration. The snippets
shown for Caddy use this exact format,7
so you can paste them in without renaming variables or adjusting paths. Caddy v2 handles MIME types differently through its HTTP app configuration, but the snippets provided here target the v1 directive syntax that many existing deployments still rely on.
Deprecated types
Several MIME types have been formally superseded or aligned with newer registrations as the web platform has evolved. The most common cases you will encounter are application/javascript and application/ecmascript being replaced by text/javascript under RFC 9239,8 text/xml aligned as an alias for application/xml under RFC 7303,9 and image/x-icon replaced by image/vnd.microsoft.icon for favicon requests.
EOT fonts (application/vnd.ms-fontobject) are another deprecated family, and all browsers that once supported EOT now support WOFF2, so serving EOT adds no value for any modern user agent. Deprecated entries in this reference are marked with a yellow warning banner in the detail panel, and each one links to the spec that documents the recommended replacement so you can update your server configuration with confidence and avoid serving stale types to modern browsers.
MIME types and browser security
Browsers treat MIME types as part of their security model. WebAssembly binaries must arrive as application/wasm or the browser refuses to compile them, producing a hard error with no fallback.10 Web fonts loaded from a different origin require a matching MIME type together with a permissive Cross-Origin-Resource-Sharing header, or the browser silently rejects them and the page falls back to system fonts. Each of these restrictions exists to prevent content-type confusion attacks, where a file with one declared type is treated as another by the browser.11 Scripts served without a recognized JavaScript MIME type will not execute when a strict Content Security Policy is in place.12
The X-Content-Type-Options: nosniff response header reinforces your declared MIME type. Without it, a browser
may detect executable content inside a file and act on that detection regardless
of what Content-Type says. Setting nosniff tells the browser to trust your declared
type exactly. Combining a correct Content-Type with nosniff closes the gap between
what you declare and what the browser assumes. CapyToolkit's server config snippets
already include nosniff in the recommended directives for file types where this
protection matters most.13
Picked the Right Content Type Checklist
- WebAssembly served as application/wasm Without this exact type, the browser refuses to compile the module and produces a hard error with no fallback.
- Modern image formats declared correctly AVIF and WebP need their own MIME types. Serving AVIF as image/jpeg makes some browsers reject the decode entirely.
- WOFF2 fonts served as font/woff2 The current preferred font format uses Brotli compression and needs the right type to load across modern browsers.
- X-Content-Type-Options: nosniff set This header stops the browser from guessing a different content type than the one you declared.
Check your own server's response headers against these four before assuming a missing file is a content bug rather than a MIME type.
- 1.
IANA, "Media Types," iana.org, accessed June 2026. https://www.iana.org/assignments/media-types/media-types.xhtml
- 2.
W3C, "WOFF File Format 2.0," W3C Recommendation, w3.org, August 2024. https://www.w3.org/TR/WOFF2/
- 3.
IETF Datatracker, "Returning Values from Forms: multipart/form-data," RFC 7578, IETF, July 2015. https://datatracker.ietf.org/doc/rfc7578/
- 4.
R. Fielding, M. Nottingham, and J. Reschke, "HTTP Semantics," RFC 9110, IETF, June 2022. https://datatracker.ietf.org/doc/rfc9110/
- 5.
nginx, "Module ngx_http_core_module: types," nginx.org, accessed June 2026. https://nginx.org/en/docs/http/ngx_http_core_module.html#types
- 6.
Apache Software Foundation, "mod_mime: AddType," httpd.apache.org, accessed June 2026. https://httpd.apache.org/docs/2.4/mod/mod_mime.html#addtype
- 7.
Caddy Server, "http.mime," caddy-docs.netlify.app, accessed June 2026. https://caddy-docs.netlify.app/v1/docs/mime
- 8.
M. Miller, M. Borins, M. Bynens, and B. Farias, "Updates to ECMAScript Media Types," RFC 9239, IETF, May 2022. https://www.rfc-editor.org/rfc/rfc9239
- 9.
H. Thompson and C. Lilley, "XML Media Types," RFC 7303, IETF, July 2014. https://www.rfc-editor.org/rfc/rfc7303
- 10.
W3C, "CSS Fonts Module Level 3," W3C Recommendation, w3.org, September 2018. https://www.w3.org/TR/2018/REC-css-fonts-3-20180920/
- 11.
IANA, "application/wasm Media Type," iana.org, accessed June 2026. https://www.iana.org/assignments/media-types/application/wasm
- 12.
MDN, "Content-Security-Policy: script-src directive," developer.mozilla.org, December 2025. https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Content-Security-Policy/script-src
- 13.
MDN, "X-Content-Type-Options header," developer.mozilla.org, March 2026. https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/X-Content-Type-Options