Comment 3 for bug 662312

Revision history for this message
Jouni "rautamiekka" Järvinen (rautamiekka) wrote :

For what it's worth, the lines from §/etc/logrotate.d/apache2§:

/var/log/apache2/*.log {
    weekly
    missingok
    rotate 52
    compress
    compresscmd /usr/bin/xz
    compressoptions "-vvz9e --lzma2=dict=64MiB,mf=bt4,nice=273 --threads=3"
    delaycompress
    notifempty
    create 640 root adm
    sharedscripts
    postrotate
                if /etc/init.d/apache2 status > /dev/null ; then \
                    /etc/init.d/apache2 reload > /dev/null; \
                fi;
    endscript
    prerotate
        if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
            run-parts /etc/logrotate.d/httpd-prerotate; \
        fi; \
    endscript
}