I basically have two questions:
How do you set RequestReadTimeout (in mod_reqtimeout), header and body time for: unlimited time
and
How to apply this to a specific folder?
By default reqtimeout.conf:
<IfModule reqtimeout_module> RequestReadTimeout header=10-20,minrate=500 RequestReadTimeout body=10,minrate=500 </IfModule>
So it will be something like:
<IfModule reqtimeout_module> #Apply this to the /var/www/unlimitedtime folder <Directory /var/www/unlimitedtime> RequestReadTimeout header=unlimited,MinRate=0 body=unlimited,MinRate=0 </Directory> </IfModule>
This does not work, but it is just an example that might make my question clearer.
thanks
source share