Files
cloudron-box/setup/start/logrotate/app
Girish Ramakrishnan a435e88b25 rotate task logs
2019-03-18 22:53:47 -07:00

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
}