Skip to content

Instantly share code, notes, and snippets.

@sharshenov
Last active August 29, 2015 14:06
Show Gist options
  • Save sharshenov/b8371f4ea4f09318415d to your computer and use it in GitHub Desktop.
Save sharshenov/b8371f4ea4f09318415d to your computer and use it in GitHub Desktop.
Logrotate template for rails apps
# save as /etc/logrotate.d/APPNAME
/home/deploy/apps/APPNAME/shared/log/*.log {
su deploy deploy
daily
missingok
rotate 30
compress
delaycompress
notifempty
copytruncate
}
@sharshenov
Copy link
Author

check it:
sudo logrotate /etc/logrotate.d/APPNAME -f

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment