Skip to content

Instantly share code, notes, and snippets.

@paulchubatyy
Created August 23, 2011 19:59
Show Gist options
  • Save paulchubatyy/1166335 to your computer and use it in GitHub Desktop.
Save paulchubatyy/1166335 to your computer and use it in GitHub Desktop.
Logrotate example
/home/xobb/src/website/logs/*.log
/home/xobb/src/blog/logs/*.log {
daily
missingok
rotate 52
compress
delaycompress
notifempty
create 0640 www-data adm
sharedscripts
prerotate
if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
run-parts /etc/logrotate.d/httpd-prerotate; \
fi; \
endscript
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