我有一个 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
但我的日志不是调试模式。这只是基本日志。我这里遗漏了什么?