diff options
author | Simon Rettberg | 2024-10-11 15:40:18 +0200 |
---|---|---|
committer | Simon Rettberg | 2024-10-11 15:40:18 +0200 |
commit | 233aad93a9f11526559c3c1fdcc07b973a49bd44 (patch) | |
tree | b08600b773eb0c0480ac1819daba1a81b52279b4 | |
parent | [sysconfig] Try harder to log meaningful error if module generation fails (diff) | |
download | slx-admin-233aad93a9f11526559c3c1fdcc07b973a49bd44.tar.gz slx-admin-233aad93a9f11526559c3c1fdcc07b973a49bd44.tar.xz slx-admin-233aad93a9f11526559c3c1fdcc07b973a49bd44.zip |
[systemstatus] Filter more spam from lighttpd log
-rw-r--r-- | modules-available/systemstatus/page.inc.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules-available/systemstatus/page.inc.php b/modules-available/systemstatus/page.inc.php index f774c4e0..00f36cbe 100644 --- a/modules-available/systemstatus/page.inc.php +++ b/modules-available/systemstatus/page.inc.php @@ -421,6 +421,10 @@ class Page_SystemStatus extends Page if (strpos($line, ':SSL routines:') === false && strpos($line, ' SSL: -1 5 104 Connection reset by peer') === false && strpos($line, 'GET/HEAD with content-length') === false + && strpos($line, 'connection closed: write failed on fd ') === false + && strpos($line, 'unexpected TLS ClientHello on clear port ') === false + && strpos($line, 'invalid request-line -> sending Status 400 ') === false + && strpos($line, 'SSL (error): 5 -1: Bad message') === false && strpos($line, 'POST-request, but content-length missing') === false) { $ret[] = $line; } |