So, how can I disable this logging completely?
Aponte para /dev/null
:
JkLogFile /dev/null
JkLogLevel info
Also how can I rotate log after one day? Currently it's being rotated after week by default (I did not write/change anything for that).
Adicione uma diretiva daily
ao /etc/logrotate.d/httpd
:
/var/log/httpd/*log {
missingok
notifempty
daily
sharedscripts
postrotate
/sbin/service httpd reload > /dev/null 2>/dev/null || true
endscript
}