fix extension
[nginx.git] / nginx_upstream_hash / README
1 == ngx_http_upstream_hash_module ==
2
3 Installation:
4
5     cd nginx-0.7.1 # or whatever
6     patch -p0 < /path/to/this/directory/nginx.patch
7     ./configure --add-module=/path/to/this/directory
8     make
9     make install
10
11 Usage:
12
13     upstream backend {
14         ...
15         hash        $request_uri;
16         hash_again  10;          # default 0
17     }
18
19 See http://wiki.codemongers.com/NginxHttpUpstreamHashModule for more details.
20
21 Questions/patches to Evan Miller, emmiller@gmail.com.