Re: Nginx reload process in detail

2017-04-28 Thread Francis Daly
On Thu, Apr 27, 2017 at 05:21:06AM -0400, shivramg94 wrote: Hi there, The rough description of the reload process is available by searching for "nginx control" or "nginx reload"; the exact details are available in the source. > In the Nginx documentation, it was mentioned that the older worker p

Re: Nginx reload process in detail

2017-04-27 Thread Alex Samad
Thats what support have advised me, reload finished the current request and then closes the connection. No longer honors the long lived Alex On 27 April 2017 at 19:21, shivramg94 wrote: > We have a persistent connection to Nginx on which we are issuing https > requests. Now when we do a reload

Nginx reload process in detail

2017-04-27 Thread shivramg94
We have a persistent connection to Nginx on which we are issuing https requests. Now when we do a reload, the persistent connections (the requests which are already accepted) are failing as soon as the reload was issued. Those connections are being dropped. Is this the expected behavior? In the N