apache 还应该生成 error_log 文件吗?

apache 还应该生成 error_log 文件吗?

我有一个像这样设置的虚拟主机

<VirtualHost my.ip.address.here:80>
   DocumentRoot /home/todieama/public_html/dev/hop/public_html/
   ServerName dev.example.com
   ServerAlias dev.example.com
   ErrorLog /home/todieama/public_html/dev/hop/public_html/application/logs/apache.log
   ServerAdmin [email protected]
   UserDir enabled todieama
   <IfModule mod_suphp.c>
     suPHP_UserGroup todieama todieama
   </IfModule>
</VirtualHost>

当捕获 PHP 错误时,它会记录在上面定义的 apache.log 文件中,也会记录在 dev/hop/public_html 中的 error_log 中。还应该在这里登录吗?如果可以的话我想停下来。

答案1

我认为你可以Errorlog从配置文件中散列该行httpd.conf

相关内容