# logrotate config for box logs

# we rotate weekly, unless 10M was hit. Keep only up to 5 rotated files. Also, delete if > 14 days old
/home/yellowtent/platformdata/logs/box.log {
    rotate 5
    weekly
    maxage 14
    maxsize 10M
    # we never compress so we can simply tail the files
    nocompress
    copytruncate
}
