Sophie

Sophie

distrib > Mandriva > current > x86_64 > by-pkgid > 406b2770bfc3a62836b99d6e4a990020 > files > 1

apache-mod_reqtimeout-2.2.22-0.1mdv2010.2.x86_64.rpm

<IfDefine HAVE_REQTIMEOUT>
    <IfModule !mod_reqtimeout.c>
	LoadModule reqtimeout_module	modules/mod_reqtimeout.so
    </IfModule>
</IfDefine>

<IfModule mod_reqtimeout.c>

    # Allow 10 seconds to receive the request including the headers and
    # 30 seconds for receiving the request body:
    #RequestReadTimeout header=10 body=30

    # Allow at least 10 seconds to receive the request body.
    # If the client sends data, increase the timeout by 1 second for every
    # 1000 bytes received, with no upper limit for the timeout (exept for
    # the limit given indirectly by LimitRequestBody):
    #RequestReadTimeout body=10,MinRate=1000


    # Allow at least 10 seconds to receive the request including the headers.
    # If the client sends data, increase the timeout by 1 second for every
    # 500 bytes received. But do not allow more than 30 seconds for the
    # request including the headers:
    #RequestReadTimeout header=10-30,MinRate=500

</IfModule>