Apache 不断将错误记录到 /var/log/error.log

Apache 不断将错误记录到 /var/log/error.log

我在 Ubuntu 10.0.4 上的 apache 服务器上使用基于名称的虚拟托管

这是我的一个网站的片段(在 /etc/apache/sites-enabled 中)

<VirtualHost *:80>
   ServerName example.com
   DocumentRoot /var/www/example

   # CustomLog with format nickname
   LogFormat "%h %l %u %t \"%r\" %>s %b" common
   CustomLog "|/usr/bin/cronolog /var/log/apache2/%Y%m.example.access.log" common

   LogLevel notice
   ErrorLog "|/usr/bin/cronolog /var/log/apache2/%Y%m.example.errors.log"

</VirtualHost>

访问日志文件正在正确的位置创建(具有正确的名称),但我发现错误仍然记录到 /var/log/apache2/error.log

这是为什么?

相关内容