User Tools

Site Tools


apache
no way to compare when less than two revisions

Differences

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


apache [2014/11/24 01:14] (current) – created 0.0.0.0
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: by 0.0.0.0

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki