From: Christophe Jaillet
Date: Fri, 15 Feb 2019 11:36:44 +0000 (+0000)
Subject: Add directive name, so that quickreference.xsl can extract default value correctly.
X-Git-Tag: 2.5.0-alpha2-ci-test-only~2149
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53131944fcaf93beb690ececc4d5245e6166ce55;p=thirdparty%2Fapache%2Fhttpd.git
Add directive name, so that quickreference.xsl can extract default value correctly.
Always align on the left code in block in order to be consistent and fix a layout issue.
Add some links between directives.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1853637 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/mod_deflate.xml b/docs/manual/mod/mod_deflate.xml
index 361a7258fec..5fe6e2b1e60 100644
--- a/docs/manual/mod/mod_deflate.xml
+++ b/docs/manual/mod/mod_deflate.xml
@@ -55,8 +55,8 @@ client
Compress only a few types
- AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript
-
+AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript
+
@@ -171,7 +171,7 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip
filter depends on the User-Agent, you should add:
- Header append Vary User-Agent
+Header append Vary User-Agent
If your decision about compression depends on other information
@@ -181,8 +181,8 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip
Example
- Header set Vary *
-
+Header set Vary *
+
@@ -238,11 +238,11 @@ content
Example
- DeflateFilterNote ratio
+DeflateFilterNote ratio
- LogFormat '"%r" %b (%{ratio}n) "%{User-agent}i"' deflate
- CustomLog "logs/deflate_log" deflate
-
+LogFormat '"%r" %b (%{ratio}n) "%{User-agent}i"' deflate
+CustomLog "logs/deflate_log" deflate
+
If you want to extract more accurate values from your logs, you
@@ -400,7 +400,7 @@ CustomLog "logs/deflate_log" deflate
DeflateInflateRatioLimit
Maximum inflation ratio for request bodies
DeflateInflateRatioLimit value
-200
+DeflateInflateRatioLimit 200
server configvirtual host
directory.htaccess
All
@@ -411,8 +411,8 @@ CustomLog "logs/deflate_log" deflate
specifies the maximum ratio of deflated to inflated size of an
inflated request body. This ratio is checked as the body is
streamed in, and if crossed more than
- DeflateInflateRatioBurst times, the request
- will be terminated.
+ DeflateInflateRatioBurst
+ times, the request will be terminated.
@@ -421,7 +421,7 @@ CustomLog "logs/deflate_log" deflate
Maximum number of times the inflation ratio for request bodies
can be crossed
DeflateInflateRatioBurst value
-3
+DeflateInflateRatioBurst 3
server configvirtual host
directory.htaccess
All
@@ -430,8 +430,8 @@ CustomLog "logs/deflate_log" deflate
The DeflateInflateRatioBurst directive
specifies the maximum number of times the
- DeflateInflateRatioLimit can be crossed before
- terminating the request.
+ DeflateInflateRatioLimit can
+ be crossed before terminating the request.