使用PPA源安装支持HTTP2的apache2和php

1
2
3
4
5
6
7
8
LC_ALL=C.UTF-8 sudo add-apt-repository -y ppa:ondrej/apache2 &&
sudo apt-key update &&
sudo apt-get update &&
sudo apt-get upgrade -y &&
sudo apt-get install apache2 -y &&
sudo a2enmod rewrite mime include headers filter expires deflate autoindex setenvif ssl http2 &&
sudo apt-get install php5.6 -y &&
sudo apt-get install libapache2-mod-wsgi-py3 -y