RevealTheme logo

Prueba de Compresión Gzip / Brotli

Comprueba si una URL sirve respuestas comprimidas (gzip o brotli).

Cómo usar esta herramienta

  1. 1

    Paste the full URL you want to check, including the https:// scheme.

  2. 2

    Submit the form to have our server request that URL.

  3. 3

    Read the result card: it shows the Content-Encoding value (such as gzip or br) and whether compression was detected.

  4. 4

    Adjust your server configuration if the card reports no compression, then re-run the check.

¿Qué es la Prueba de Compresión Gzip / Brotli?

La compresión reduce el tamaño de transferencia entre un 60 % y un 80 % en el contenido de texto (HTML, CSS, JS, JSON). Brotli (presentado en 2015) supera a gzip; los servidores modernos admiten ambos y eligen el mejor según la cabecera Accept-Encoding. Esta herramienta comprueba si tu servidor está configurado correctamente.

Casos de uso comunes

  • Confirm that a newly deployed Nginx or Apache config is actually emitting gzip or brotli on your homepage.

  • Verify a CDN such as Cloudflare or Fastly is compressing HTML responses at the edge.

  • Spot-check an API endpoint that returns large JSON to see whether it is being compressed in transit.

  • Diagnose a slow page by ruling compression in or out before digging into other performance causes.

  • Check whether a specific path (not just the root) is served compressed when rules differ per route.

  • Demonstrate to a client or teammate, with a shareable result, that their pages are or are not compressed.

Preguntas frecuentes

¿Por qué mi sitio no está comprimido?
Suele ser un problema de configuración del servidor. Apache necesita mod_deflate; Nginx necesita gzip_on. LiteSpeed lo trae activado por defecto.
¿La compresión ayuda con las imágenes?
Marginalmente: las imágenes (JPEG/WebP) ya están comprimidas. La compresión ayuda sobre todo al contenido basado en texto.

Herramientas relacionadas