cd /usr/local/src
wget -c http://dl-package.bullten.in/cwp/apache-upgrade.sh
chmod +x apache-upgrade.sh
sh apache-upgrade.sh | tee /var/log/apache_upgrade.log
After the install completes edit the file below:
nano /usr/local/apache/conf.d/vhosts.conf
Look for a lines below:
<Directory "/home/USER/public_html"> AllowOverride All </Directory>
Add Require all granted:
<Directory "/home/USER/public_html"> AllowOverride All Require all granted </Directory>
