Hi Luca, On Mon, Jan 30, 2017 at 1:57 PM, <elu...@apache.org> wrote: > Author: elukey > Date: Mon Jan 30 12:57:00 2017 > New Revision: 1780907 > > URL: http://svn.apache.org/viewvc?rev=1780907&view=rev > Log: > Add more info about the role of Timeout for mod_cgi > > PR 60404 asks if the Timeout directive is related to > the amount of time to wait for the entire CGI script's > output or only the first byte received. > Checking in mod_cgi.c -> cgi_bucket_read shows a > apr_pollset_poll that should support the latter.
Timeout for the first byte indeed, but more generally for each chunk of the response until the end of stream (should the response be sent in multiple/successive pieces of data). Actually this is an incomplete response inactivity timeout. Regards, Yann.