I have an AWS Ubuntu 16 Apache Server that is set up to use HTTP2. I have followed every tutorial out there and they all say the same thing:
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:ondrej/apache2
sudo apt-get update
sudo apt-get upgrade
sudo a2enmod http2
My virtual host file:
<VirtualHost *:443>
Protocols h2 h2c http/1.1
ServerName clearvision-dev
Then sudo service apache2 restart
However when I go to https://tools.keycdn.com/http2-test to test I get the error:
HTTP/2 Test Result www.clearvision-cm.com
Negative! www.clearvision-cm.com does not support HTTP/2.0. ALPN is not supported.
Please can you help explain what is going wrong?