Files
cloudron-box/setup/start/logrotate/box

13 lines
325 B
Plaintext
Raw Normal View History

2018-11-16 13:12:33 +01:00
# 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
2018-11-16 13:12:33 +01:00
/home/yellowtent/platformdata/logs/box.log {
rotate 5
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
}