Server max-connectionsDetails » History » Revision 5
Revision 4 (Anonymous, 2007-01-12 23:52) → Revision 5/6 (icy, 2008-10-22 18:11)
h1. <pre> #!rst server.max-connections option ============================= server.max-connections Provides fine tuning for request handling. max-connections == max-fds/2 (maybe /3) As in, if you want to support 2048 concurrent connections, you may also want to set server.max-fds = 4096 (or 6144). Why more file handles than connections? The other file handles are used for fastcgi and/or files. Default: <pre>server.max-connections :: server.max-connections = 1024</pre> 1024 </pre>