view common/logrotate-httpd @ 395:fa2747b27bb4

Fix git-prompt in Ubuntu They package it different and have another path
author IBBoard <dev@ibboard.co.uk>
date Mon, 18 Apr 2022 10:37:00 +0100
parents 956e484adc12
children
line wrap: on
line source

/var/log/apache/*log {
    monthly
    rotate 3
    missingok
    compress
    notifempty
    sharedscripts
    postrotate
        /sbin/service httpd reload > /dev/null 2>/dev/null || true
    endscript
}