you got 8TB traffic and you use 3TB per day ??
then you can just survive 2 days and your traffic is up
i can offer you a better server then with no traffic limit ( 100mbit dedicated port or 1GB port

)
anyway
Code: Select all
KeepAlive Off
MaxKeepAliveRequests 100
KeepAliveTimeout 5
Timeout 15
<IfModule mpm_prefork_module>
ServerLimit 512
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 350
MaxRequestsPerChild 1000
</IfModule>
AcceptFilter http none
EnableSendfile Off
EnableMMAP off
TraceEnable off
ServerSignature Off
ServerTokens ProductOnly
FileETag None
use maxrequestperchild instead putting it on 0 (so childs get generated and terminated to prevent mem hog)
with keepalive off ( or on a low value) your server makes a lot more requests but that eliminate the use of a higher max clients (as connections only stay open for a second )
for the rest it is hard to configure on feeling , you need to try and tweak as needed to get the optimum value
Greeetings From PowerChaos