Verificare se un sito supporta HTTP/2 con cURL
cURL è un ottimo strumento che ci permette di fare diverse altre cose oltre che scaricare file dalla rete.
Ad esempio possiamo verficiare se un sito supporta HTTP/2.
Qui sotto un pò di esempi:
Verificare se un sito supporta HTTP/2 con cURL
$ curl -I --http2 https://www.google.it/ | grep HTTP
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
HTTP/2 200
$ curl -I --http2 https://www.mattepuffo.com/ | grep HTTP
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
HTTP/1.1 302 Found
$ curl -I --http2 https://www.matteoferrone.it/ | grep HTTP
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
HTTP/1.1 200 OK
Come vedete il mio blog non lo supporta ancora; probabilmemte perchè è su hosting condiviso.
Enjoy!
network curl http2
Commentami!