Skip to content

Instantly share code, notes, and snippets.

@dgoujard
Created September 11, 2011 19:22
Show Gist options
  • Save dgoujard/1209996 to your computer and use it in GitHub Desktop.
Save dgoujard/1209996 to your computer and use it in GitHub Desktop.
/etc/logrotate.d/nginx
/var/log/nginx/*.log {
daily
missingok
rotate 52
compress
delaycompress
notifempty
sharedscripts
postrotate
[ ! -f /var/run/nginx.pid ] || kill -USR1 `cat /var/run/nginx.pid`
endscript
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment