mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 09:12:51 +01:00
1.7 KiB
1.7 KiB
php-fpm
Installing
Add to your deploy.php
require 'contrib/php-fpm.php';
Configuration
php_fpm_version
– The PHP-fpm version. For example:8.0
.php_fpm_service
– The full name of the PHP-fpm service. Defaults tophp{{php_fpm_version}}-fpm
.php_fpm_command
– The command to run to reload PHP-fpm. Defaults toecho "" | sudo -S /usr/sbin/service {{php_fpm_service}} reload
.
Usage
Start by explicitely providing the current version of PHP-version using the php_fpm_version
.
Alternatively, you may use any of the options above to configure how PHP-fpm should reload.
Then, add the php-fpm:reload
task at the end of your deployments by using the after
method like so.
set('php_fpm_version', '8.0');
after('deploy', 'php-fpm:reload');
- Configuration
- Tasks
Configuration
php_fpm_version
php_fpm_service
'php{{php_fpm_version}}-fpm'
php_fpm_command
'echo "" | sudo -S /usr/sbin/service {{php_fpm_service}} reload'
Tasks
php-fpm:reload
Reload the php-fpm service