Tip: You can check any publicly reachable file (HTML, JS, CSS, JSON, images).
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.
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.
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>
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>
No compression. Used as a fallback when server or client do not negotiate compression.