check HTTP2 compatibility
How to test HTTP/2 via command line?
Get the latest cURL release and use this command:
curl --http2
.$ echo | openssl s_client -alpn h2 -connect google.com:443 | grep ALPN
ALPN protocol: h2 DONE
A web-based tool from KeyCDN https://tools.keycdn.com/http2-test
and the is-http2 package can also help determine host support.
Comments
Post a Comment