在 vhost Apache 2.4.6 中启用调试日志记录

在 vhost Apache 2.4.6 中启用调试日志记录

我有一个 Apache 服务器(我没有进行设置)。这httpd.conf是默认设置,我没有看到任何有关日志的信息。

conf.d/vhost_xxx看到了我的 vhost 的一些配置。我添加了LogLevel debug

<VirtualHost _default_:80>

        ServerName xx
        ServerAdmin xx
        DocumentRoot "/srv/www/html/"


        LogLevel debug
        ErrorLog logs/xx
        CustomLog logs/xx


</VirtualHost>

我重新加载(也重新启动)了我的 Apache:

service httpd restart

但我的日志不是调试模式。这只是基本日志。我这里遗漏了什么?

相关内容