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

19 lines
418 B
Plaintext
Raw Normal View History

2019-03-18 22:05:35 -07:00
# logrotate config for app, crash, addon and task logs
2018-06-06 17:36:48 +02:00
2019-03-18 22:05:35 -07:00
# man 7 glob
/home/yellowtent/platformdata/logs/[!t][!a][!s][!k][!s]/*.log {
2018-06-06 17:36:48 +02:00
# only keep one rotated file, we currently do not send that over the api
rotate 1
size 10M
# we never compress so we can simply tail the files
nocompress
copytruncate
}
2019-03-18 22:05:35 -07:00
/home/yellowtent/platformdata/logs/tasks/*.log {
monthly
rotate 0
missingok
}