如果我没有在虚拟主机内设置错误日志,它将默认为默认错误/访问日志。有没有办法为一个虚拟主机关闭此功能?
答案1
在您<VirtualHost>
所讨论的 vhost 的块中,您可以配置要发送到 /dev/null 的日志
<VirtualHost *:80>
ServerName nologserver.tld
ErrorLog /dev/null
CustomLog /dev/null common
</VirtualHost>
答案2
将 /etc/apache2/conf-enabled/other-vhosts-access-log.conf 更改为以下内容:
ErrorLog /dev/null
CustomLog /dev/null common
答案3
在 Ubuntu 上
sudo a2disconf other-vhosts-access-log