2018-11-16 13:12:33 +01:00
|
|
|
# logrotate config for box logs
|
|
|
|
|
|
2022-11-17 00:47:24 +01:00
|
|
|
# we rotate weekly, unless 10M was hit. Keep only up to 5 rotated files. Also, delete if > 14 days old
|
2018-11-16 13:12:33 +01:00
|
|
|
/home/yellowtent/platformdata/logs/box.log {
|
2019-07-30 14:47:33 -07:00
|
|
|
rotate 5
|
2022-11-17 00:47:24 +01:00
|
|
|
weekly
|
|
|
|
|
maxage 14
|
|
|
|
|
maxsize 10M
|
2018-11-16 13:12:33 +01:00
|
|
|
# we never compress so we can simply tail the files
|
|
|
|
|
nocompress
|
|
|
|
|
copytruncate
|
|
|
|
|
}
|