I can't find in the docs if it's possible to keep apache from timing out on a proxy request. I'm trying to setup a socket server and am looking for this as an option.
Asked
Active
Viewed 225 times
0
-
1You don't want to do that exactly, it will tie up an Apache thread possibly indefinitely. What you want to do is raise the timeout value. – user207421 Oct 17 '12 at 23:54
-
correct. I changed my app arch to avoid this problem. Thanks – wajiw Oct 18 '12 at 14:34
1 Answers
1
Did you try ProxyTimeout directive, and set it to a relatively big number in seconds as specified in http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxytimeout

Erman Doser
- 116
- 1
- 6
-
I changed the architecture of my app so I don't need to do this anymore, but I'll accept your answer =) – wajiw Oct 18 '12 at 14:34