feature: support upto php 8.4 on apache manager

This commit is contained in:
usmannasir
2024-09-27 12:26:21 +05:00
parent a989d9900f
commit 8bfe91404c
6 changed files with 95 additions and 10 deletions

View File

@@ -15,6 +15,7 @@ class ApacheController:
serverRootPath = '/etc/httpd'
configBasePath = '/etc/httpd/conf.d/'
phpBasepath = '/etc/opt/remi'
php54Path = '/opt/remi/php54/root/etc/php-fpm.d/'
php55Path = '/opt/remi/php55/root/etc/php-fpm.d/'
php56Path = '/etc/opt/remi/php56/php-fpm.d/'
@@ -37,6 +38,8 @@ class ApacheController:
serverRootPath = '/etc/apache2'
configBasePath = '/etc/apache2/sites-enabled/'
phpBasepath = '/etc/php'
php54Path = '/etc/php/5.4/fpm/pool.d/'
php55Path = '/etc/php/5.5/fpm/pool.d/'
php56Path = '/etc/php/5.6/fpm/pool.d/'