My server (since installing nginx) has been going down and down again.
Users online are under 200, but atop shows 1500+ reads.

---------------------------------------------------
My apache config:
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 3
<IfModule prefork.c>
StartServers 8
MinSpareServers 5
MaxSpareServers 20
ServerLimit 512
MaxClients 512
MaxRequestsPerChild 10000
</IfModule>
<IfModule worker.c>
StartServers 4
MaxClients 512
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild 100
</IfModule>
Please can anyone help me with this problem?