application/vnd.openxmlformats-officedocument.wordprocessingml.document

DOCX is the modern Word document format, packaged as Office Open XML for collaboration, comments, and template-driven drafting.

application
Usually already encoded

Content-Type header

Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document
Common extensions

How teams usually encounter it

This page maps the media type to the file extensions and delivery behaviors developers usually care about: browser parsing, upload validation, cache correctness, and asset handling.

Compression signal

application/vnd.openxmlformats-officedocument.wordprocessingml.document is usually already compressed or stored in a binary-heavy format, so extra transfer compression tends to help less.

Server config snippets

Use these when a server is missing the right extension-to-MIME mapping or you want the expected header to survive a proxy, CDN, or custom asset bucket setup.

Nginx
types {
  application/vnd.openxmlformats-officedocument.wordprocessingml.document docx;
}
Apache
AddType application/vnd.openxmlformats-officedocument.wordprocessingml.document .docx

Magic bytes / file signature

When you need to validate uploads or investigate a mislabeled file, the signature often starts with 50 4B 03 04.

Operational shortcut

If a browser downloads this asset instead of rendering it correctly, check the response header first, then verify the extension mapping on your origin and edge cache. .docx is the fastest sanity check for teammates reviewing the file outside the app.

Related application types