不确定这是否可能。
那么空行呢?
更新:
测试配置
logrotate -d /etc/logrotate.d/apache2
返回
error: /etc/logrotate.d/apache2:1 lines must begin with a keyword or a filename (possibly in double quotes)
对于配置文件中的每个空行。
不过,关于注释语法的原始问题已得到解答。
更新 2:这个配置现在似乎对我有用(注意它在旋转后重新启动 apache):
/var/log/apache2/*.log {
# https://stackoverflow.com/questions/26482773/apache-and-logrotate-configuration
su root adm
daily
missingok
rotate 14
create 640 root adm
# https://stackoverflow.com/questions/25845752/logrotate-suffix-dateext-rotate
dateext
dateformat -%Y-%m-%d.log
sharedscripts
postrotate
systemctl restart apache2 || true
endscript
}
1 个回答