Configuring the Multiple PHP Versions with Apache on Ubuntu

1. Installing Apache2 sudo apt update sudo apt install apache2 libapache2-mod-fcgid Now enable a few modules required for the configuration of multiple PHP versions with Apache. These modules are necessary to integrate PHP FPM and FastCGI with the Apache server. sudo a2enmod actions fcgid alias proxy_fcgi 2. Installing PHP Versions sudo apt install software-properties-common sudo…

Details