User Tools

Site Tools


apache

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

apache [2014/11/24 01:14] (current)
0.0.0.0 created
Line 1: Line 1:
 +====== Apache ======
  
 +===== Logging via syslog =====
 +Redirect the error messages to syslog, using the ErrorLog directive:
 +{{File|/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.
 +{{File|/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>}}
apache.txt · Last modified: 2014/11/24 01:14 by 0.0.0.0