如何在apache2中禁用日志zip

时间:2016-09-28 09:56:21

标签: apache2

如何在 apache2 中禁用日志访问/错误zip?

1 个答案:

答案 0 :(得分:0)

/var/log/apache2/*.log {
daily
missingok
rotate 14
compress
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

}

相关问题