HTTP 2.2

Where is the gold

freelancer-green https://cheapsslsecurity.com/p/the-advantages-of-http2/
https://www.howtoforge.com/how-to-enable-http-2-in-apache/
https://http2.pro/doc/Apache
https://www.collectiveray.com/what-is-http2
https://www.tecmint.com/enable-http2-in-apache-on-ubuntu/

Debian 10

apt-get install php7.4-fpm
a2dismod php7.4
a2enconf php7.4-fpm
a2enmod proxy_fcgi

 

a2dismod mpm_prefork
a2enmod mpm_event
a2enmod ssl

a2enmod http2

systemctl restart apache2



Protocols h2 http/1.1
<VirtualHost *:443>
ServerName example.com
ServerAlias www.example.com
DocumentRoot /var/www/public_html/example.com
SSLEngine on
SSLCertificateKeyFile /path/to/private.pem
SSLCertificateFile /path/to/cert.pem
SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
Protocols h2 http/1.1
</VirtualHost>