From f6fba3e0016c7be83ecc219bfaaff58bf9fa6d15 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Wed, 20 Feb 2002 15:18:11 +0000 Subject: [PATCH] add an example to the mod_deflate documentation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93508 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_deflate.html | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/docs/manual/mod/mod_deflate.html b/docs/manual/mod/mod_deflate.html index 48c190fc2d..71e8fb0054 100755 --- a/docs/manual/mod/mod_deflate.html +++ b/docs/manual/mod/mod_deflate.html @@ -45,6 +45,32 @@
  • DeflateMemLevel
  • + +

    See also: + AddOutputFilter and + SetOutputFilter + +

    Enabling Compression

    + +

    Compression is implemented by the DEFLATE + filter. The following directive + will enable compression for documents in the container where it + is placed:

    + +
    + SetOutputFilter DEFLATE +
    + +

    Here is an example of enabling compression for the Apache + documentation:

    + +
    + <Directory "/your-server-root/manual">
    + SetOutputFilter DEFLATE

    + leave the existing directives as-is
    + </Directory> +
    +
    -- 2.50.1