PHP FPM integration on SME Server. Let you run several versions of PHP (using SCL from Remi's repo) at the same time
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.7 KiB
31 lines
1.7 KiB
#!/usr/bin/perl -w
|
|
|
|
use esmith::Build::CreateLinks qw(:all);
|
|
|
|
foreach my $service (qw(php-fpm php56-php-fpm php70-php-fpm php71-php-fpm)){
|
|
service_link_enhanced($service, "S86", "7");
|
|
service_link_enhanced($service, "K16", "6");
|
|
service_link_enhanced($service, "K16", "0");
|
|
service_link_enhanced($service, "K16", "1");
|
|
}
|
|
|
|
foreach my $file qw( /etc/php-fpm.conf
|
|
/etc/php-fpm.d/www.conf
|
|
/etc/php-fpm.d/shares.conf
|
|
/opt/remi/php56/root/etc/php-fpm.conf
|
|
/opt/remi/php56/root/etc/php-fpm.d/www.conf
|
|
/opt/remi/php56/root/etc/php-fpm.d/shares.conf
|
|
/etc/opt/remi/php70/php-fpm.conf
|
|
/etc/opt/remi/php70/php-fpm.d/www.conf
|
|
/etc/opt/remi/php70/php-fpm.d/shares.conf
|
|
/etc/opt/remi/php71/php-fpm.conf
|
|
/etc/opt/remi/php71/php-fpm.d/www.conf
|
|
/etc/opt/remi/php71/php-fpm.d/shares.conf ){
|
|
templates2events($file, qw(webapps-update bootstrap-console-save));
|
|
}
|
|
|
|
safe_symlink('/etc/e-smith/templates.metadata/etc/php-fpm.d/www.conf' , 'root/etc/e-smith/templates.metadata/etc/php-fpm.d/shares.conf');
|
|
safe_symlink('/etc/e-smith/templates.metadata/opt/remi/php56/root/etc/php-fpm.d/www.conf', 'root/etc/e-smith/templates.metadata/opt/remi/php56/root/etc/php-fpm.d/shares.conf');
|
|
safe_symlink('/etc/e-smith/templates.metadata/etc/opt/remi/php70/php-fpm.d/www.conf', 'root/etc/e-smith/templates.metadata/etc/opt/remi/php70/php-fpm.d/shares.conf');
|
|
safe_symlink('/etc/e-smith/templates.metadata/etc/opt/remi/php71/php-fpm.d/www.conf', 'root/etc/e-smith/templates.metadata/etc/opt/remi/php71/php-fpm.d/shares.conf');
|
|
|
|
|