Revised `monolog.yaml` to add a new "notifier" channel, updated handlers, and adjusted log settings. Extended logrotate configuration to include rotation rules for notifier logs, ensuring proper log management.
27 lines
331 B
Plaintext
27 lines
331 B
Plaintext
/var/log/chill/default-*.log {
|
|
su php-fpm php-fpm
|
|
rotate 90
|
|
daily
|
|
compress
|
|
missingok
|
|
notifempty
|
|
}
|
|
|
|
/var/log/apt/privacy-*.log {
|
|
su php-fpm php-fpm
|
|
rotate 180
|
|
daily
|
|
compress
|
|
missingok
|
|
notifempty
|
|
}
|
|
|
|
/var/log/apt/notifier-*.log {
|
|
su php-fpm php-fpm
|
|
rotate 800
|
|
daily
|
|
compress
|
|
missingok
|
|
notifempty
|
|
}
|