what is the best setting for using lighttpd on 8G ram?
Posted
by user299415
on Stack Overflow
See other posts from Stack Overflow
or by user299415
Published on 2010-04-03T21:58:02Z
Indexed on
2010/04/03
22:03 UTC
Read the original article
Hit count: 236
I have running 8GB ram and 8 x Xeon 3361 system! What is the best setting for running simultaneous connection! What is the maximum? Is setting like this correct?
server.max-keep-alive-requests = 0 server.max-keep-alive-idle = 10 server.max-read-idle = 60 server.max-write-idle = 60
server.event-handler = "linux-sysepoll" server.max-fds = 2048 fastcgi.server = ( ".php" => ( "localhost" => ( "socket" => "/tmp/php-fastcgi.socket", "bin-path" => "/usr/bin/php-cgi", "max-procs" => 20, "bin-environment" => ( "PHP_FCGI_CHILDREN" => "40", "PHP_FCGI_MAX_REQUESTS" => "800" ), "broken-scriptfilename" => "enable" ) ) )
please help me!
© Stack Overflow or respective owner