12345678910111213141516171819202122 |
- /Storage/**/*Log /Storage/**/*.log{
- weekly
- rotate 10
- size 10M
- missingok
- compress
- notifempty
- copytruncate
- su root root
- }
- /var/log/**/*.log{
- daily
- rotate 3
- nodateext
- size 3M
- missingok
- compress
- notifempty
- copytruncate
- su root root
- }
|