Skip to content

Instantly share code, notes, and snippets.

@schowdhury
Created May 8, 2012 20:02
Show Gist options
  • Save schowdhury/2638887 to your computer and use it in GitHub Desktop.
Save schowdhury/2638887 to your computer and use it in GitHub Desktop.
log rotation
-----------------------------
logrotate
-----------------------------
modify /etc/logrotate.d/apache2 with content
#####
/var/log/apache2/*.log {
daily
missingok
rotate 20
compress
delaycompress
notifempty
create 640 root adm
sharedscripts
postrotate
/etc/init.d/apache2 reload > /dev/null
endscript
}
#####
create /etc/logrotate.d/<my app> with content
#####
/home/deployer/<my app>/current/log/*.log {
daily
missingok
rotate 20
compress
delaycompress
notifempty
create 644 deployer deployer
sharedscripts
}
#####
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment