diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-05-03 22:52:45 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-05-03 22:52:45 +0200 |
commit | 1cc484b25547e349177cf652f62021b802f48655 (patch) | |
tree | 9f07ef0a57aa145943df8e2c200b48f9b9a48a32 /plugins/statistics/statistics.cpp | |
parent | f60f8e469cf8c2aff2cf62e42a46ad806e663d41 (diff) |
Fixed TCP keepalive (workaround)
Diffstat (limited to 'plugins/statistics/statistics.cpp')
-rw-r--r-- | plugins/statistics/statistics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/statistics/statistics.cpp b/plugins/statistics/statistics.cpp index 35ea241..6d3899e 100644 --- a/plugins/statistics/statistics.cpp +++ b/plugins/statistics/statistics.cpp @@ -113,7 +113,7 @@ std::string statistics_plugin::generate_page( result += "<h1>Webserver Statistics</h1>"; result += "<p>Host uptime: "s + GetServerParam("uptime_host") + "</p>"; - result += "<p>Host webserver: "s + GetServerParam("uptime_webserver") + "</p>"; + result += "<p>Webserver uptime: "s + GetServerParam("uptime_webserver") + "</p>"; result += "<p>IPv6 fraction by requests: "s + std::to_string(ipv6_fraction_by_requests * 100) + "%</p>"; result += "<p>IPv6 fraction by bytes: "s + std::to_string(ipv6_fraction_by_bytes * 100) + "%</p>"; result += "<p>HTTPS fraction by requests: "s + std::to_string(https_fraction_by_requests * 100) + "%</p>"; |