Skip to content

Instantly share code, notes, and snippets.

@michielgerritsen
Created January 27, 2020 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michielgerritsen/cd0e145a3905e9bb3f9f555688477b63 to your computer and use it in GitHub Desktop.
Save michielgerritsen/cd0e145a3905e9bb3f9f555688477b63 to your computer and use it in GitHub Desktop.
Restart php-fpm on Laravel Forge using Deployer
<?php
desc('Restart php-fpm');
task('php-fpm:restart', function () {
run('sudo service php7.3-fpm reload');
});
after('deploy:symlink', 'php-fpm:restart');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment