Sophie

Sophie

distrib > Mageia > 1 > i586 > media > core-updates > by-pkgid > c425da812939588e1efd0eed44aec684 > files > 1

apache-mod_reqtimeout-2.2.17-5.1.mga1.i586.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>