Reputation: 1572
I am trying to upgrade Apache2 to a version higher than 2.4.26 so that I can enable HTTP/2. I have run these commands with no joy:
sudo add-apt-repository ppa:ondrej/apache2
sudo apt update
sudo apt upgrade
sudo apt dist-upgrade
I have Ubuntu ESM. Ubuntu 16.04.7
Upvotes: 3
Views: 5155
Reputation: 21
Ubuntu 16.04 Xenial reached End of Standard Support in April 2021 and all the packages for this version of Ubuntu were removed from ppa:ondrej/apache2
by its maintainer.
Source: https://github.com/oerdnj/deb.sury.org/issues/1567
Upvotes: 1
Reputation: 1706
Some alternatives:
Upvotes: 2
Reputation: 101
Try adding these 2 lines to /etc/apt/sources.list
deb http://ppa.launchpad.net/ondrej/apache2/ubuntu xenial main
deb-src http://ppa.launchpad.net/ondrej/apache2/ubuntu xenial main
and then
sudo apt update
sudo apt upgrade
sudo apt dist-upgrade
Upvotes: 0