Content compression
Cloudflare compresses content in two ways: between Cloudflare and your website visitors and between Cloudflare and your origin server.
In addition to Cloudflare’s default caching behavior, Cloudflare supports Gzip and Brotli compression when delivering content to website visitors.
flowchart LR accTitle: Compressed responses sent to website visitor accDescr: Cloudflare can send responses to visitors using Gzip compression, Brotli compression, or no compression. A[Visitor browser] B((Cloudflare)) C[(Origin server)] A == "Request" ==> B -.-> C C -.-> B == "Response<br>(Gzip / Brotli / No compression)" ==> A style A stroke-width: 2px style B stroke: orange,fill: orange,color: black style C stroke-dasharray: 5 5 linkStyle 0,3 stroke-width: 2px linkStyle 1,2 stroke-width: 1px
If supported by visitors’ web browsers, Cloudflare will return Gzip or Brotli-encoded responses for the following content types:
Cloudflare’s global network can deliver content to website visitors using Gzip compression, Brotli compression, or no compression, according to the values visitors provide in the Accept-Encoding
request header.
For responses with error status codes, Cloudflare will only compress responses if their error status code is 403
or 404
. For successful response status codes, Cloudflare will only compress responses if their status code is 200
. Responses with other status codes will not be compressed.
Enterprise customers can override Cloudflare’s default compression behavior using Compression Rules.
When requesting content from your origin server, Cloudflare supports Gzip compression, Brotli compression, or no compression.
flowchart LR accTitle: Compressed responses sent from the origin server accDescr: Cloudflare accepts responses from origin server using Gzip compression, Brotli compression, or no compression. A[Visitor browser] B((Cloudflare)) C[(Origin server)] A -.-> B == "Request<br>Accept-Encoding: gzip, br" ==> C C == "Response<br>(Gzip / Brotli / No compression)" ==> B -.-> A style A stroke-dasharray: 5 5 style B stroke: orange,fill: orange,color: black style C stroke-width: 2px linkStyle 1,2 stroke-width: 2px linkStyle 0,3 stroke-width: 1px
If your origin server responds to a Cloudflare request using Gzip/Brotli compression, we will keep the same compression in the response sent to the website visitor if:
- You include a
Content-Encoding
header in your server response mentioning the compression being used (gzip
orbr
). - The visitor browser (or client) supports the compression algorithm.
- You do not enable Cloudflare features that change the response content (refer to Notes about end-to-end compression for details).
Cloudflare’s reverse proxy can also convert between compressed formats and uncompressed formats. Cloudflare can receive content from your origin server with Gzip or Brotli compression and serve it to visitors uncompressed (or vice versa), independently of caching.
If you do not want a particular response from your origin to be encoded with Gzip/Brotli when delivered to website visitors, you can disable this by including a cache-control: no-transform
HTTP header in the response from your origin web server.
Even when using the same compression algorithm end to end (between your origin server and Cloudflare, and between the Cloudflare global network and your website visitor), Cloudflare will need to decompress the response and compress it again if you enable any of the following options for the request:
To disable these features for specific URI paths, create a Configuration Rule.
Additionally, Cloudflare Fonts also requires Cloudflare to decompress the response and compress it again, and cannot be disabled through Rules at this time.