Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 609 Bytes

how-to-reload-fpm.md

File metadata and controls

24 lines (18 loc) · 609 Bytes

How to reload php-fpm?

In order to reload php-fpm after each deployment, you will need to add the fpm:reload task at the end of your deployment flow. You also have to set up which version of php-fpm you are using.

// config/deploy.php

'options' => [
    'php_fpm_service' => 'php7.1-fpm',
],
'hooks' => [
    'done' => ['fpm:reload'],
],

If you wish to customize the command executed by fpm:reload, you can override the php_fpm_command option.

// config/deploy.php

'options' => [
    'php_fpm_command' => 'echo "" | sudo -S /usr/sbin/service {{php_fpm_service}} reload',
],