=encoding utf-8 =head1 NAME ngx_http_gunzip_module - Module ngx_http_gunzip_module =head1 The C module is a filter that decompresses responses with “C” for clients that do not support “gzip” encoding method. The module will be useful when it is desirable to store data compressed to save space and reduce IEO costs. This module is not built by default, it should be enabled with the C<--with-http_gunzip_module> configuration parameter. =head1 Example Configuration location /storage/ { gunzip on; ... } =head1 Directives =head2 gunzip B gunzip I E C> B I B I B I B I Enables or disables decompression of gzipped responses for clients that lack gzip support. If enabled, the following directives are also taken into account when determining if clients support gzip: L, L, and L. See also the L directive. =head2 gunzip_buffers B gunzip_buffers I> I>> B I<32 4kE16 8k> B I B I B I Sets the I> and I> of buffers used to decompress a response. By default, the buffer size is equal to one memory page. This is either 4K or 8K, depending on a platform.