From 7d9d4606ee506b21bf59b0c02de8ed6c7202756f Mon Sep 17 00:00:00 2001 From: Ettore Dreucci Date: Sun, 23 Nov 2025 23:24:04 +0100 Subject: [PATCH] Fixed grammar --- content/blog/httpd-piped-logs-drawbacks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/httpd-piped-logs-drawbacks.md b/content/blog/httpd-piped-logs-drawbacks.md index ee99c63..59d86a5 100644 --- a/content/blog/httpd-piped-logs-drawbacks.md +++ b/content/blog/httpd-piped-logs-drawbacks.md @@ -10,7 +10,7 @@ draft: false ## Understanding Apache httpd piped logs feature and its impact on performance -[Apache `httpd`](https://httpd.apache.org/), for a while, is [capable](https://httpd.apache.org/docs/2.4/logs.html#piped) of writing log files through a pipe to another process via the `CustomLog` directive in [`mod_log_config`](https://httpd.apache.org/docs/2.4/mod/mod_log_config.html) module. +[Apache `httpd`](https://httpd.apache.org/), since a while, is [capable](https://httpd.apache.org/docs/2.4/logs.html#piped) of writing log files through a pipe to another process via the `CustomLog` directive in [`mod_log_config`](https://httpd.apache.org/docs/2.4/mod/mod_log_config.html) module. While this feature can be convenient, it introduces subtle risks that can impact web performance.