Re: Duplicate Content-Length header with same value, recent change in behavior intentional?

2023-04-19 Thread Jesse Stimpson via nginx
gt; backend is adding the header as well as nginx then there's your problem. > > > > Sent from my Galaxy > > > > ---- Original message > From: Jesse Stimpson via nginx > Date: 4/19/23 08:57 (GMT-05:00) > To: nginx@nginx.org > Cc: Jesse Stimpso

Duplicate Content-Length header with same value, recent change in behavior intentional?

2023-04-19 Thread Jesse Stimpson via nginx
97 Connection: keep-alive ETag: "643fd39e-1f1" .. - These tests were done with this simple config, the rest of the conf is defaults. location / { proxy_pass http://localhost:4040; } Is this change intentional? Did I overlook it in the Changelog? Thanks, Jesse __

NGINX HPACK decode failure

2015-10-18 Thread Jesse Wilson
m that triggers this. Thanks! – Jesse ​ ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: safe to call ngx_http_subrequest inside location handler?

2013-05-28 Thread jesse
I see. Thanks, Maxim! Posted at Nginx Forum: http://forum.nginx.org/read.php?2,239619,239635#msg-239635 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

safe to call ngx_http_subrequest inside location handler?

2013-05-28 Thread jesse
Hello, So according to evan miller's tutorial and nginx's own source code, it seems only filters can send subrequests. But I have tried to call ngx_http_subrequest inside my location handler, and everything seems working fine. I am using version 1.2.8. Just want to ask and see if it's safe to do