Lighttpd

在 lighttpd 中禁用將 ip 地址記錄到 access.log

  • November 22, 2016

我的網路伺服器配置了 lighttpd/1.4.31。

lighttpd 中大約 80% 的條目

/var/log/lighttpd/access.log

由我自己的IP地址組成。

我想禁用我的 ip 地址記錄訪問條目到 access.log。

我怎樣才能做到這一點?

使用 開啟accesslog-module後lighty-enable-mod accesslog,修改conf-enabled/10-accesslog.conf如下:

server.modules += ( "mod_accesslog" )
accesslog.filename = "/var/log/lighttpd/access.log"
$HTTP["remoteip"] == "127.0.0.1" {
   accesslog.filename = "/dev/null"
}

引用自:https://serverfault.com/questions/697492