Find out whether the server returns gzip/br and what the real byte savings are. We compare responses for Accept-Encoding: gzip, br and Accept-Encoding: identity.
gzip is a GNU utility (1992) based on the DEFLATE algorithm (RFC 1951/1952). It became the de-facto standard for compressing text web content in the HTTP/1.1 era.
Brotli is a modern compression codec by Google (publicly released 2015). With a richer static dictionary and smarter entropy coding it often outperforms gzip for HTML/CSS/JS/SVG, especially at higher compression levels.
Compression is configured at platform level on supported shared-hosting plans. On VPS and dedicated servers the result depends on the web server, content types and selected configuration.
Accept-Encoding: gzip, br — we detect the encoding chosen by the server and measure real bytes.Accept-Encoding: identity — forced no compression, measure bytes.Content-Encoding, Content-Type, Server).