Adjusted logrotate configuration to use `/var/log/chill/*` paths instead of `/var/log/apt/*` for privacy and notifier logs, ensuring correct log management.
27 lines
335 B
Plaintext
27 lines
335 B
Plaintext
/var/log/chill/default-*.log {
|
|
su php-fpm php-fpm
|
|
rotate 90
|
|
daily
|
|
compress
|
|
missingok
|
|
notifempty
|
|
}
|
|
|
|
/var/log/chill/privacy-*.log {
|
|
su php-fpm php-fpm
|
|
rotate 180
|
|
daily
|
|
compress
|
|
missingok
|
|
notifempty
|
|
}
|
|
|
|
/var/log/chill/notifier-*.log {
|
|
su php-fpm php-fpm
|
|
rotate 800
|
|
daily
|
|
compress
|
|
missingok
|
|
notifempty
|
|
}
|