Apache

Logging via syslog

Redirect the error messages to syslog, using the ErrorLog directive: /etc/apache2/modules.d/00_default_settings.conf|<syntax lang="apache"> #ErrorLog /var/log/apache2/error_log ErrorLog syslog:local1 LogLevel warn </syntax>

Apache can't handle sending the access logs to syslog natively, but we can pipe them to another process to do it for us - logger. /etc/apache2/modules.d/00_mod_log_config.conf|<syntax lang="apache"> - Comment out any existing CustomLog directives CustomLog "|/usr/bin/logger -p local1.info" common </syntax>