mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-03 04:12:31 +01:00
* rotate both daily and by size by using maxsize in stead of size * decrease the max size to 10M for rsyslog files * remove delaycompress for rsyslog files * increase rotate to 10 for cloud.log
11 lines
206 B
Plaintext
11 lines
206 B
Plaintext
/var/log/haproxy.log {
|
|
daily
|
|
rotate 5
|
|
missingok
|
|
notifempty
|
|
maxsize 10M
|
|
postrotate
|
|
/bin/kill -HUP `cat /var/run/rsyslog.pid 2> /dev/null` 2> /dev/null || true
|
|
endscript
|
|
}
|