From: Jeff Trawick Date: Fri, 15 Feb 2002 20:52:52 +0000 (+0000) Subject: initial (rough) docs for mod_deflate X-Git-Tag: 2.0.33~241 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b744e26e3d70c3931ceca1469a4d5cca6d58b817;p=apache initial (rough) docs for mod_deflate git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93435 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/directives.html b/docs/manual/mod/directives.html index c3fbc7f7c7..c91a74166f 100644 --- a/docs/manual/mod/directives.html +++ b/docs/manual/mod/directives.html @@ -259,6 +259,15 @@
  • DefaultType
  • +
  • DeflateFilterNote
  • + +
  • DeflateMemLevel
  • + +
  • DeflateWindowSize
  • +
  • Deny
  • <Directory>
  • diff --git a/docs/manual/mod/index-bytype.html b/docs/manual/mod/index-bytype.html index 2bf7c29c8b..906ae34443 100644 --- a/docs/manual/mod/index-bytype.html +++ b/docs/manual/mod/index-bytype.html @@ -262,6 +262,10 @@
    Class 1,2 WebDAV HTTP extensions
    +
    mod_deflate
    + +
    Compression of content
    +
    mod_ssl
    strong cryptography using the Secure Sockets Layer (SSL) and diff --git a/docs/manual/mod/index.html b/docs/manual/mod/index.html index 344314cd06..727b5f60a0 100644 --- a/docs/manual/mod/index.html +++ b/docs/manual/mod/index.html @@ -122,6 +122,10 @@
    Class 1,2 WebDAV HTTP extensions
    +
    mod_deflate
    + +
    Compression of content
    +
    mod_dir
    Basic directory handling.
    diff --git a/docs/manual/mod/mod_deflate.html b/docs/manual/mod/mod_deflate.html new file mode 100755 index 0000000000..48c190fc2d --- /dev/null +++ b/docs/manual/mod/mod_deflate.html @@ -0,0 +1,129 @@ + + + + + + + Apache module mod_deflate + + + + + + +

    Module mod_deflate

    + +

    This module provides the ability to set environment + variables based upon attributes of the request.

    + +

    Status: Experimental
    + Source File: + mod_deflate.c
    + Module Identifier: + deflate_module
    + Compatibility: Available in + Apache 2.0 and later.

    + +

    Summary

    + +

    The experimental mod_deflate module allows + output from your server to be compressed before being sent + to the client over the network.

    + +

    Directives

    + + +
    + + +

    DeflateFilterNote + directive

    + +

    Syntax: DeflateFilterNote notename +
    + Default: none
    + Context: server config
    + Override: none
    + Status: Experimental
    + Module: mod_deflate
    + Compatibility: Apache 2.0 and + above

    + +

    The DeflateFilterNote directive specifies that a note about + compression ratios should be attached to the request. The name + of the note is the value specified for the directive.

    + +
    + + +

    DeflateWindowSize directive

    + +

    Syntax: DeflateWindowSize + value
    + Default: none
    + Context: server config
    + Override: none
    + Status: Experimental
    + Module: mod_deflate
    + Compatibility: Apache 2.0 and + above

    + +

    The DeflateWindowSize directive specifies the + zlib compression window size.

    + +
    + + +

    DeflateMemLevel + directive

    + +

    Syntax: DeflateMemLevel + value
    + Default: none
    + Context: server config
    + Override: none
    + Status: Experimental
    + Module: mod_deflate
    + Compatibility: Apache 2.0 and + above

    + +

    The DeflateMemLevel directive specifies the amount of + memory available to zlib for compression.

    + + + +