details: http://hg.nginx.org/nginx/rev/0256738454dc
branches:
changeset: 6250:0256738454dc
user: Valentin Bartenev
date: Tue Sep 15 17:49:15 2015 +0300
description:
Increased the default number of output buffers.
Since an output buffer can only be used for either reading or sending,
details: http://hg.nginx.org/nginx/rev/081a073e5164
branches:
changeset: 6249:081a073e5164
user: Valentin Bartenev
date: Tue Sep 22 01:40:04 2015 +0300
description:
HTTP/2: fixed header block parsing with CONTINUATION frames (#792).
It appears that the CONTINUATION frames don't need
details: http://hg.nginx.org/nginx/rev/f5380c244cd7
branches:
changeset: 6248:f5380c244cd7
user: Valentin Bartenev
date: Tue Sep 22 01:40:04 2015 +0300
description:
HTTP/2: fixed HPACK header field parsing.
diffstat:
src/http/v2/ngx_http_v2.c | 5 +
1 files changed, 5 inserti
details: http://hg.nginx.org/nginx/rev/fbbb1c1ce1eb
branches:
changeset: 6247:fbbb1c1ce1eb
user: Roman Arutyunyan
date: Mon Sep 21 23:08:34 2015 +0300
description:
Sub filter: fixed initialization in http{} level (ticket #791).
If sub_filter directive was only specified at http{} le
Hello!
On Sun, Sep 20, 2015 at 05:51:26PM +0800, flygoast wrote:
> Hi, all,
>
>
> I use limit_req module to limit QPS to my upstream, conf like this:
> http {
> limit_req_zone $request_uri zone=req_one:10m rate=1r/s;
> server {
> ...
> location / {
> limit_req zone=req_one;
>}
> }
>