30, 2021 1:47 PM
To: nginx-de...@nginx.org
Subject: Re: Using single persistent socket to send subrequests
Hello!
On Thu, Dec 30, 2021 at 07:58:33AM +, Devashi Tandon wrote:
> upstream ext-authz-upstream-server {
> server 172.20.10.6:9006;
> ke
24 Jan 2022 17:56:33 +0300
From: "Sergey A. Osokin"
Subject: Re: Using single persistent socket to send subrequests
To: nginx@nginx.org
Message-ID:
Content-Type: text/plain; charset=utf-8
Hi Devashi,
On Mon, Jan 24, 2022 at 05:52:56AM +, Devashi Tandon wrote:
>
> We have the f
help on what we are missing?
Thanks,
Devashi
Date: Mon, 24 Jan 2022 17:56:33 +0300
From: "Sergey A. Osokin"
Subject: Re: Using single persistent socket to send subrequests
To: nginx@nginx.org
Message-ID:
Content-Type: text/plain; charset=utf-8
Hi Devashi,
On Mon, Jan 24, 2022 at 05:52:56
Hi,
In our module code, we are processing the HTTP request body when it is not
stored in r->request_body->temp_file.
When I send a 9381 bytes body, NGINX doesn't store the body in temp_file but in
the internal buffers. Hence we are able to process the body.
However, when I enable chunked encod
Hi,
We have a custom configuration for a private server defined as:
ext_private_server http://private-server:8050;
under the server block. This configuration is parsed by our custom nginx
module, and then we create a socket to send packets to the server port.
We were wondering if we can someho