myvesta/install/rhel/7/logrotate/httpd
2015-10-21 20:10:00 +03:00

11 lines
283 B
Plaintext

/var/log/httpd/*log /var/log/httpd/domains/*log {
missingok
notifempty
compress
sharedscripts
postrotate
/sbin/service httpd reload > /dev/null 2>/dev/null || true
[ ! -f /var/run/nginx.pid ] || kill -USR1 `cat /var/run/nginx.pid`
endscript
}