comparison README @ 0:a75d4ad9c5d2

Gunzip filter module.
author Maxim Dounin <mdounin@mdounin.ru>
date Sun, 13 Dec 2009 00:24:03 +0300
parents
children 0dd7d109e56b
comparison
equal deleted inserted replaced
-1:000000000000 0:a75d4ad9c5d2
1 Gunzip module for nginx.
2
3 This module allows ungzipping responses returned with Content-Encoding: gzip
4 for clients that doesn't support it. It may be usefull if you prefer to store
5 data compressed (to save space or disk/network IO) but do not want to penalize
6 clients without gzip support.
7
8 Configuration directives:
9
10 gunzip (on|off)
11
12 Context: http, server, location
13 Default: off
14
15 Switches gunzip.
16
17 gunzip_buffers <number> <size>
18
19 Context: http, server, location
20 Default: 32 4k/16 8k
21
22 Specifies number and size of buffers available for decompression.
23
24 Usage:
25
26 location /storage/ {
27 gunzip on;
28 }
29
30 To compile nginx with gunzip module, use "--add-module <path>" option to nginx
31 configure.