Re: about proxy_request_buffering

2015-04-02 Thread patrickshan
K. Thanks Maxim :) Posted at Nginx Forum: http://forum.nginx.org/read.php?2,257731,257815#msg-257815 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: about proxy_request_buffering

2015-04-01 Thread Maxim Dounin
Hello! On Wed, Apr 01, 2015 at 07:10:00AM -0400, patrickshan wrote: > Maxim Dounin Wrote: > > > On Sun, Mar 29, 2015 at 01:51:15AM -0400, cubicdaiya wrote: [...] > > > Is proxy_request_buffering always enabled when SPDY is enabled? > > > > Yes, it is not currently possible to switch off > > p

Re: about proxy_request_buffering

2015-04-01 Thread patrickshan
Maxim Dounin Wrote: --- > Hello! > > On Sun, Mar 29, 2015 at 01:51:15AM -0400, cubicdaiya wrote: > > > Hello. > > > > Though I'm trying to apply 'proxy_request_buffering off;' for > unbuffered > > uploading, > > The buffering still seems to be

Re: about proxy_request_buffering

2015-04-01 Thread cubicdaiya
Hello. > 2015-04-01 9:18 GMT+09:00 Maxim Dounin : > Yes, it is not currently possible to switch off proxy_request_buffering > when using SPDY. Thanks. My question was resolved. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,257731,257784#msg-257784 ___

Re: about proxy_request_buffering

2015-03-31 Thread Maxim Dounin
Hello! On Sun, Mar 29, 2015 at 01:51:15AM -0400, cubicdaiya wrote: > Hello. > > Though I'm trying to apply 'proxy_request_buffering off;' for unbuffered > uploading, > The buffering still seems to be enabled from error.log. > > # nginx.conf > > server { > listen 443 ssl spdy; > server

Re: about proxy_request_buffering

2015-03-31 Thread cubicdaiya
> Same problem here. I suspect it's automatically disabled when spdy is > enabled. And also found an issue here for tengine: > https://github.com/alibaba/tengine/issues/444. Might be a similar issue ? Thanks for your comment. I saw the issue now. Probably so. Posted at Nginx Forum: http://forum.

Re: about proxy_request_buffering

2015-03-29 Thread patrickshan
Same problem here. I suspect it's automatically disabled when spdy is enabled. And also found an issue here for tengine: https://github.com/alibaba/tengine/issues/444. Might be a similar issue ? Posted at Nginx Forum: http://forum.nginx.org/read.php?2,257731,257740#msg-257740 ___

about proxy_request_buffering

2015-03-28 Thread cubicdaiya
Hello. Though I'm trying to apply 'proxy_request_buffering off;' for unbuffered uploading, The buffering still seems to be enabled from error.log. # nginx.conf server { listen 443 ssl spdy; server_name example.com; location /upload { proxy_request_buffering off; pro