I'm really interested in what all the timeout configurations are in my Rails (3.0.0) server's stack, and ideally, what those timeouts mean in plainish English.
The impetus for my curiosity is receiving a "SocketException: Connection reset" from a Java client that makes RESTful calls to a Rails server, and trying to figure out what timeouts would cause my server's internal processing to cut short before sending a response (the Rails server itself makes another service call in the code path under question).
So basically I have a broad question (all configurable timeouts) and a narrow question (connection reset issue), and I'm hoping an awesomely thorough and well-written answer to the broad will in turn answer the narrow.
All I know so far:
Apache 2.2:
TimeOut: default = 300 seconds
Seems like more of a client read/write timeout than waiting on the internals to generate the response.