Lighttpd 错误日志增加太快

Lighttpd 错误日志增加太快

我在用lighttpd v1.4.35我已经开发了一个简单的网页,其中包含一些链接供测试。

点击几次后,我注意到错误日志增长太快。在 /etc/lighttpd/lighttpd.conf 中,我将 server.errorlog 路径设置为:

server.errorlog             = "/myPartition/myFolder/error.log"

错误日志中的条目示例:

2015-02-19 13:41:28: (log.c.164) server started 
2015-02-19 13:41:57: (response.c.339) -- splitting Request-URI 
2015-02-19 13:41:57: (response.c.340) Request-URI     :  /versions.php 
2015-02-19 13:41:57: (response.c.341) URI-scheme      :  http 
2015-02-19 13:41:57: (response.c.342) URI-authority   :  172.22.196.7 
2015-02-19 13:41:57: (response.c.343) URI-path (raw)  :  /versions.php 
2015-02-19 13:41:57: (response.c.344) URI-path (clean):  /versions.php 
2015-02-19 13:41:57: (response.c.345) URI-query       :   
2015-02-19 13:41:57: (mod_access.c.135) -- mod_access_uri_handler called 
2015-02-19 13:41:57: (response.c.473) -- before doc_root 

我应该配置什么参数才能仅记录错误,而不是我单击或选择的任何内容?

提前致谢。

答案1

在您的配置中的某处,有以下一行:

debug.log-request-handling = "enable"

#在其前面加上 来将其注释掉。

要找出它在哪里,你可以使用 grep:

grep -nr 'log-request-handling' /etc/lighttpd/*

答案2

您的配置中启用了一些调试选项。请根据以下信息检查您的配置lighttpd 调试文档页面并禁用任何额外的调试日志。

相关内容