Files
ansible-role-chill/templates/logrotate/chill
Julien Fastré 4b9e3a08e3 Update logrotate paths for chill logs
Adjusted logrotate configuration to use `/var/log/chill/*` paths instead of `/var/log/apt/*` for privacy and notifier logs, ensuring correct log management.
2025-10-27 17:01:07 +01:00

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
}