blob: c5a008c83cd10f0caafdba634843c05887d4de5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Note that logs are not compressed unless "compress" is configured,
# which can be done either here or globally in /etc/logrotate.conf.
/var/log/httpd/*log {
missingok
notifempty
sharedscripts
delaycompress
postrotate
/bin/systemctl reload httpd.service > /dev/null 2>/dev/null || true
endscript
}
|