SSL/TLS & Transport
low Severity
Free Check
HTTP/2 & ALPN Protocol Negotiation
Verifies the server supports HTTP/2 protocol via ALPN negotiation for multiplexed, secure connections.
Why It Matters
HTTP/2 multiplexing prevents head-of-line blocking and enforces stronger cipher suite requirements.
How We Check This
We send ALPN tokens (h2, http/1.1) in ClientHello and inspect the negotiated ALPN protocol.
How to Fix & Implement
Copy-paste configuration blocks tailored for your web server or edge proxy.
nginx snippet
listen 443 ssl http2;
Frequently Asked Questions
Does HTTP/2 require TLS?
All major web browsers require TLS for HTTP/2.