Logging
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
我應該配置什麼參數才能只註冊錯誤,而不是我點擊或選擇的任何內容?
提前致謝。
在您的配置中的某處,您有以下行:
debug.log-request-handling = "enable"
通過在它前面放一個註釋掉
#
它。要找出它在哪裡,您可以使用 grep:
grep -nr 'log-request-handling' /etc/lighttpd/*
您在配置中啟用了一些調試選項。根據lighttpd 調試文件頁面上的資訊檢查您的配置,並禁用任何額外的調試日誌記錄。