Curl shows HTTP/1.1 in my SSL Enabled Site

I am using EE with LetsEncrypt. Everything’s working fine. But when I ran the curl command:

curl -X GET -I https://mynewsite.com

returns the following:

HTTP/1.1 200 OK
Server: nginx
Date: Sat, 08 Oct 2016 07:13:52 GMT
Content-Type: text/html; charset=UTF-8
Content-Length: 9593
Connection: keep-alive
Vary: Accept-Encoding
Link: <https://mynewsite.com/wp-json/>; rel="https://api.w.org/"
X-SRCache-Fetch-Status: HIT
X-SRCache-Store-Status: BYPASS
X-Powered-By: EasyEngine 3.7.4

(site name removed for obvious reasons) So how can I make it HTTP/2?

Try with this test : https://tools.keycdn.com/http2-test Because curl doesn’t choose http2 by default

1 Like

Tried. It supports! yay!

Thanks