michaelsanford
Translator, Web Developer
# Limit on total number of servers running, i.e., limit on the number
# of clients who can simultaneously connect --- if this limit is ever
# reached, clients will be LOCKED OUT, so it should NOT BE SET TOO LOW.
# It is intended mainly as a brake to keep a runaway server from taking
# the system with it as it spirals down...
# Mike: default 150
MaxClients 200
This might be a dumb question, but does this number take into account mutliple connections per client? That is, does 200 refer to 200 unique computers connecting to my system or to 200 connections?
I assume it means 200 unique computers, and those unique computers can have up to "MaxRequestsPerChild" connections?
Incidentally, if this limit is reached and someone is locked out, what error page will they receive?
I'm running my personal site (see sig) from my iMac on a DSL, and traffic is pretty low, but to make sure I don't saturate my poor little line, and slow my computer to a crawl, I'm trying to optimize Apache so the (at most 3-5) simultaneous unique users can still see stuff reasonably well, but more than that will be locked out.