====== Apache ====== ===== Logging via syslog ===== Redirect the error messages to syslog, using the ErrorLog directive: {{File|/etc/apache2/modules.d/00_default_settings.conf| #ErrorLog /var/log/apache2/error_log ErrorLog syslog:local1 LogLevel warn }} 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. {{File|/etc/apache2/modules.d/00_mod_log_config.conf| - Comment out any existing CustomLog directives CustomLog "|/usr/bin/logger -p local1.info" common }}