From 97a63835afacae3aa1562dfe8624a701b253362d Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Thu, 5 Mar 2026 09:33:13 +0100 Subject: [PATCH] DOC: config: Use the right alias for %B In custom log format part, %[req.bytes_in] was erroneously documented as the alias of %B. The good alias is %[res.bytes_in]. It is now fixed. This patch must be backported to 3.3. --- doc/configuration.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/configuration.txt b/doc/configuration.txt index e34546088..7905e1815 100644 --- a/doc/configuration.txt +++ b/doc/configuration.txt @@ -28746,7 +28746,7 @@ Please refer to the table below for currently defined aliases : | Others | +---+------+------------------------------------------------------+---------+ | | %B | bytes_read (from server to client) | numeric | - | | | %[req.bytes_in] | | + | | | %[res.bytes_in] | | +---+------+------------------------------------------------------+---------+ | H | %CC | captured_request_cookie | string | +---+------+------------------------------------------------------+---------+