![[APACHE DOCUMENTATION]](../images/sub.gif)
Apache HTTP Server Version 2.0
Apache Module mod_deflate
Summary
The experimental mod_deflate module provides
the DEFLATE output filter that allows output from
your server to be compressed before being sent to the client over
the network.
See also
Directives
Enabling Compression
Compression is implemented by the DEFLATE
filter. The following directive
will enable compression for documents in the container where it
is placed:
Most popular browsers can not handle compression of all content
so you may want to enable the 'gzip-only-text/html' note (see below)
SetEnv gzip-only-text/html 1
SetOutputFilter DEFLATE
|
Here is an example of enabling compression for the Apache
documentation:
<Directory "/your-server-root/manual">
SetEnv gzip-only-text/html 1
SetOutputFilter DEFLATE
</Directory>
|
| Description: | Places the compression ratio in a note for logging | | Syntax: | DeflateFilterNote notename | | Context: | server config | | Status: | experimental | | Module: | mod_deflate |
|
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.
| Description: | Amount of memory available to zlib for compression | | Syntax: | DeflateMemLevel value | | Context: | server config | | Status: | experimental | | Module: | mod_deflate |
|
The DeflateMemLevel directive specifies
the amount of memory available to zlib for compression.
The DeflateWindowSize directive specifies the
zlib compression window size.
Apache HTTP Server Version 2.0

