aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/templates/logrotate
blob: 5680567528e278c8aa3f42bc3f89ef09bc604395 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/var/log/httpd/*_log /var/log/httpd/apache_runtime_status /var/log/httpd/ssl_mutex {
    rotate 5
    monthly
    missingok
    notifempty
    nocompress
    prerotate
	/etc/rc.d/init.d/httpd closelogs > /dev/null 2>&1 || :
    endscript
    postrotate
	/etc/rc.d/init.d/httpd closelogs > /dev/null 2>&1 || :
    endscript
}