Performance

HTTP/2 support

Checks if the server supports HTTP/2 or HTTP/3.

¿Por qué importa esto?

HTTP/2 loads multiple files simultaneously over one connection (multiplexing), dramatically reducing load time compared to HTTP/1.1. HTTP/3 (QUIC) is even faster on mobile networks.

¿Cómo se soluciona?

Enable HTTP/2 on your web server (requires HTTPS). Nginx: http2 parameter to the listen directive. Apache: mod_http2 module. Cloudflare supports HTTP/2 and HTTP/3 automatically.

Este check puntúa de 0 a 100. Bajo 50 es un fallo, 50 a 89 un aviso, 90 o más es bueno. Tras cada crawl ve la nota por página en el informe, con una breve explicación.

Preguntas frecuentes

Checks if the server supports HTTP/2 or HTTP/3.

HTTP/2 loads multiple files simultaneously over one connection (multiplexing), dramatically reducing load time compared to HTTP/1.1. HTTP/3 (QUIC) is even faster on mobile networks.

Enable HTTP/2 on your web server (requires HTTPS). Nginx: http2 parameter to the listen directive. Apache: mod_http2 module. Cloudflare supports HTTP/2 and HTTP/3 automatically.

Ejemplo

Copie el código de abajo y adapte el dominio, la marca y el contenido a su situación.

# Nginx: enable HTTP/2 (requires HTTPS)
server {
    listen 443 ssl http2;
    server_name www.yourdomain.com;

    ssl_certificate /etc/letsencrypt/live/yourdomain.com/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/yourdomain.com/privkey.pem;

    # HTTP/3 (QUIC) - optional but recommended
    listen 443 quic reuseport;
    add_header Alt-Svc 'h3=":443"; ma=86400';
}

# Cloudflare automatically enables HTTP/2 and HTTP/3
Empezar gratis