19 lines
418 B
Plaintext
19 lines
418 B
Plaintext
# logrotate config for app, crash, addon and task logs
|
|
|
|
# man 7 glob
|
|
/home/yellowtent/platformdata/logs/[!t][!a][!s][!k][!s]/*.log {
|
|
# 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
|
|
}
|
|
|
|
/home/yellowtent/platformdata/logs/tasks/*.log {
|
|
monthly
|
|
rotate 0
|
|
missingok
|
|
}
|
|
|