summaryrefslogtreecommitdiffstats
path: root/httpd.logrotate
blob: d233e9c8bc3f31a152754487e4b79465b137c02d (plain)
1
2
3
4
5
6
7
8
9
/var/log/httpd/*log {
    missingok
    notifempty
    sharedscripts
    delaycompress
    postrotate
	/bin/kill -HUP `cat /var/run/httpd/httpd.pid 2>/dev/null` 2> /dev/null || true
    endscript
}