Skip to content

Instantly share code, notes, and snippets.

@randy-ran
Forked from dgoujard/php-fpm
Created April 18, 2020 07:46
Show Gist options
  • Select an option

  • Save randy-ran/4b4c863b687bd323bdaa6cc36991d290 to your computer and use it in GitHub Desktop.

Select an option

Save randy-ran/4b4c863b687bd323bdaa6cc36991d290 to your computer and use it in GitHub Desktop.
/etc/logrotate.d/php-fpm
/var/log/php-fpm/*.log {
daily
missingok
rotate 52
compress
delaycompress
notifempty
sharedscripts
postrotate
[ ! -f /var/run/php-fpm/php-fpm.pid ] || kill -USR1 `cat /var/run/php-fpm/php-fpm.pid`
endscript
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment