Author: dinocookie
Date: 29-05-04 01:28
Since apache httpd is capable of writing log files through pipes, redirecting messages through /usr/bin/logger is a convenient way to avoid losing data.
# syslog.conf
local1.* /var/log/httpd-access.log
# httpd.conf
ErrorLog "|/usr/bin/logger -p local1.err"
CustomLog "|/usr/bin/logger -p local1.info" common
Well, because the format of logging messages is slightly changed, additional processing may needed before analyzing them.
|
|