Re: [users@httpd] timeout and keepalive parameter in ProxyPass

2021-10-19 Thread Yann Ylavic
On Wed, Oct 13, 2021 at 4:22 PM Usha Nayak wrote: > > Need help in understanding the highlighted parameters: > > ProxyPass "/example" "http://backend.example.com; timeout=3600 keepalive=On > > keepalive parameter - As I understand relates to TCP or socket keep alive > probes that are sent to

[users@httpd] RE: [EXTERNAL] Re: [users@httpd] timeout and keepalive parameter in ProxyPass

2021-10-19 Thread Orendt, John
...@medtronic.com From: Usha Nayak Sent: Tuesday, October 19, 2021 10:37 AM To: users@httpd.apache.org Subject: [EXTERNAL] Re: [users@httpd] timeout and keepalive parameter in ProxyPass Hello Thank you for your response. However, I'm still a bit fuzzy when it comes to the keepalive and timeout

Re: [users@httpd] timeout and keepalive parameter in ProxyPass

2021-10-19 Thread Usha Nayak
Hello Thank you for your response. However, I'm still a bit fuzzy when it comes to the keepalive and timeout attribute. I understand keepalive=On attribute by itself but in combination with timeout is where I'm unclear. In the scenario that I presented with following: - timeout=3600

Re: [users@httpd] timeout and keepalive parameter in ProxyPass

2021-10-13 Thread Dino Ciuffetti
The global "Timeout" parameter is needed to set the length of time Apache httpd will wait for I/O in various circumstances. https://httpd.apache.org/docs/2.4/mod/core.html#timeout (https://httpd.apache.org/docs/2.4/mod/core.html#timeout) The "keepalive" attribute of ProxyPass can be used to fool

[users@httpd] timeout and keepalive parameter in ProxyPass

2021-10-13 Thread Usha Nayak
Hello Need help in understanding the highlighted parameters: ProxyPass "/example" "http://backend.example.com; timeout=3600 keepalive=On keepalive parameter - As I understand relates to TCP or socket keep alive probes that are sent to prevent idle connection. [image: image.png] My confusion