Compression Test (Brotli / gzip)

Tip: You can check any publicly reachable file (HTML, JS, CSS, JSON, images).

What does this tool do?

The compression test from eiwen.net checks in real time whether a website or file is delivered with GZIP or Brotli compression - and how much the transfer size is reduced.

With this free online tool from eiwen.net, you can quickly check whether your server has GZIP or Brotli enabled and whether your website can load faster as a result.

What the test shows

Tip: On the command line, you can quickly check with curl -I -H "Accept-Encoding: br" or gzip.

Useful for developers, SEO analysts and site owners who want to improve website performance.

Which compression methods exist - and how do you enable them?

Brotli (br) - modern and efficient

Supported by most modern browsers. On Apache it can be enabled with mod_brotli.

<IfModule mod_brotli.c>
  BrotliCompressionQuality 5
  AddOutputFilterByType BROTLI_COMPRESS text/html text/plain text/css application/javascript application/json
</IfModule>

gzip - proven standard

Compatible with practically all browsers. On Apache it is handled by mod_deflate.

<IfModule mod_deflate.c>
  AddOutputFilterByType DEFLATE text/html text/plain text/css application/javascript application/json
</IfModule>

Uncompressed (identity)

No compression. Used as a fallback when server or client do not negotiate compression.