From: Jeff Trawick Date: Wed, 20 Feb 2002 15:18:11 +0000 (+0000) Subject: add an example to the mod_deflate documentation X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=172651d2490440b786899ca8273cf8a3de6675d9;p=apache 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 --- 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> +
    +