19 lines
348 B
Plaintext
19 lines
348 B
Plaintext
/var/log/apache2/*.log {
|
|
daily
|
|
missingok
|
|
rotate 14
|
|
compress
|
|
delaycompress
|
|
notifempty
|
|
create 640 root adm
|
|
sharedscripts
|
|
prerotate
|
|
if [ -d /etc/logrotate.d/httpd-prerotate ]; then
|
|
run-parts /etc/logrotate.d/httpd-prerotate
|
|
fi
|
|
endscript
|
|
postrotate
|
|
/opt/psa/admin/sbin/httpdmng --reload > /dev/null 2>/dev/null || true
|
|
endscript
|
|
}
|