Multiple Requests and MinSpareServers?

I have a small problem with my server. I made a folder with three 50mb files, and I try to download them all at the same time. Some times, I can, and other times, it won't load the next file untill the first one is done. It will randomly disallow me to have multiple requests.

Here's some of my httpd.conf:
Code:
KeepAlive On
MaxKeepAliveRequests 0
KeepAliveTimeout 10
MinSpareServers 15
MaxSpareServers 65
StartServers 15
MaxClients 850
Could it be because of MinSpareServers? I noticed it would only let me download all files when I had 300+ apache proccesses. What should I change it to?

Thanks

 

 

 

 

Top