Skip to content

Instantly share code, notes, and snippets.

@joshado
Created July 1, 2011 12:35
Show Gist options
  • Save joshado/1058447 to your computer and use it in GitHub Desktop.
Save joshado/1058447 to your computer and use it in GitHub Desktop.
/var/log/nginx/access.log {
missingok
notifempty
delaycompress
sharedscripts
postrotate
test ! -f /var/run/nginx.pid || kill -USR1 `cat /var/run/nginx.pid`
endscript
}
/var/log/nginx/error.log {
missingok
notifempty
delaycompress
sharedscripts
postrotate
test ! -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