From: Rich Bowen Date: Tue, 19 May 2026 14:12:30 +0000 (+0000) Subject: Missing default value, and small typo fixes. X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=46f6513bbf747663c8eed95af47601342693a1d3;p=thirdparty%2Fapache%2Fhttpd.git Missing default value, and small typo fixes. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1934398 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_brotli.xml b/docs/manual/mod/mod_brotli.xml index 014d0d19ed..c02826b008 100644 --- a/docs/manual/mod/mod_brotli.xml +++ b/docs/manual/mod/mod_brotli.xml @@ -75,7 +75,7 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-brotli

If you want to restrict the compression to particular MIME types in general, you may use the AddOutputFilterByType directive. Here is an example of - enabling compression only for the html files of the Apache + enabling compression only for the html files of the httpd documentation:

@@ -104,14 +104,14 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-brotli

The mod_brotli module sends a Vary: Accept-Encoding HTTP response header to alert proxies that a cached response should be sent only to clients that send the - appropriate Accept-Encoding request header. This + appropriate Accept-Encoding request header. This prevents compressed content from being sent to a client that will not understand it.

If you use some special exclusions dependent on, for example, the User-Agent header, you must manually configure an addition to the Vary header - to alert proxies of the additional restrictions. For example, + to alert proxies of the additional restrictions. For example, in a typical configuration where the addition of the BROTLI_COMPRESS filter depends on the User-Agent, you should add:

@@ -170,6 +170,7 @@ content BrotliFilterNote Places the compression ratio in a note for logging BrotliFilterNote [type] notename +None server configvirtual host @@ -280,7 +281,7 @@ CustomLog "logs/brotli_log" brotli

The BrotliAlterETag directive specifies - how the ETag hader should be altered when a response is compressed.

+ how the ETag header should be altered when a response is compressed.

AddSuffix

Append the compression method onto the end of the ETag, causing @@ -297,7 +298,7 @@ CustomLog "logs/brotli_log" brotli

Remove

Remove the ETag header from compressed responses. This prevents some conditional requests from being possible, but avoids the - shortcomings of the preceding options.

+ shortcomings of the preceding options.