Falls wer bei Ubuntu 20.04 auf http/2 umstellen will und nicht weiß welche Anleitungen auch funktionieren - ich habe folgende ausgeführt:
www.linuxbabe.com
Kurz: einfach folgende Befehle als root in die Konsole eingeben:

How to Enable HTTP/2 Protocol with Apache on Ubuntu 16.04/17.10
This tutorial is going to show you how to enable HTTP/2 protocol and use server push with Apache on Ubuntu 16.04 and Ubuntu 17.10.

Kurz: einfach folgende Befehle als root in die Konsole eingeben:
Code:
a2enmod http2
a2dismod php7.4
a2dismod mpm_prefork
a2enmod mpm_event proxy_fcgi setenvif
apt install php7.4-fpm
systemctl start php7.4-fpm
systemctl enable php7.4-fpm
a2enconf php7.4-fpm
systemctl restart apache2