Sophie

Sophie

distrib > Mageia > 2 > i586 > by-pkgid > a59d99d921b61531305538efcdff3a64 > files > 19

apache-2.2.24-1.1.mga2.src.rpm

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

<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>