2018-11-16 13:12:33 +01:00
|
|
|
# logrotate config for box logs
|
|
|
|
|
|
2019-07-30 14:47:33 -07:00
|
|
|
# keep upto 5 logs of size 10M each
|
2018-11-16 13:12:33 +01:00
|
|
|
/home/yellowtent/platformdata/logs/box.log {
|
2019-07-30 14:47:33 -07:00
|
|
|
rotate 5
|
2018-11-16 13:12:33 +01:00
|
|
|
size 10M
|
|
|
|
|
# we never compress so we can simply tail the files
|
|
|
|
|
nocompress
|
|
|
|
|
copytruncate
|
|
|
|
|
}
|