Files
server/etc/logrotate.d/apache2
cutemeli 0bfc6c8425 Initial
2025-12-22 10:32:59 +00:00

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
}