search for: max_proc

Displaying 7 results from an estimated 7 matches for "max_proc".

Did you mean: max_procs
2006 Mar 23
2
Lighttpd Configuration Problems
...stcgi module fastcgi.server = ( ".fcgi" => ( "test" => ( "socket" => "/tmp/test1.socket", "bin-path" => "/home/swarren/test/public/dispatch.fcgi", "min-procs" => 1, "max_procs" => 2 ) ) ) } # End of test vhost ------------------------------------------ Does anything jump out as being obviously wrong here? the test, public and log folders are all owned by user swarren, and fully opened to read/write/execute. Any advice would be greatly appreciate...
2006 Jan 16
0
Lighttpd/FastCGI dispatch.fcgi processes
....conf like this: fastcgi.server = ( ".fcgi" => ( "test" => ( "socket" => "/tmp/test1.socket", "bin-path" => "/home/paulbarry/public/dispatch.fcgi", "min-procs" => 1, "max_procs" => 2 ) ) ) When I start up lighttpd, there are 4 processes: 28505 root 17 0 25224 20m 1976 S 0.0 45.7 0:03.09 dispatch.fcgi 28504 root 18 0 20720 13m 1660 S 0.0 29.5 0:02.38 dispatch.fcgi 28503 root 18 0 20720 1080 856 S 0.0 2.3 0:02.55 disp...
2006 May 26
2
Lighttpd Config
...dule fastcgi.server = ( ".fcgi" => ( "logapp" => ( "socket" => "/tmp/logapp1.socket", "bin-path" => "/home/jturnbull/logapp/public/dispatch.fcgi", "min-procs" => 1, "max_procs" => 2, "bin-environment" => ("RAILS_ENV" => "production") ) ) ) } # End of sceduler vhost # mimetype mapping etc. -- View this message in context: http://www.nabble.com/Lighttpd+Config-t1689030.html#a4583425 Sent from the RubyOnRai...
2006 Dec 11
0
Lighttpd setup with rails
..."socket" => "/tmp/test1.socket", "bin-path" => "/home/rails/test/public/dispatch.fcgi", "bin-environment" => ( "RAILS_ENV" => "production" ), "min-procs" => 1, "max_procs" => 2 ) ) ) #### accesslog module accesslog.filename = "/var/log/lighttpd_access.log" url.access-deny = ( "~", ".inc" ) $HTTP["url"] =~ "\.pdf$" { server.range-requests = "disable" } ## # which...
1998 Jun 27
0
check-ps 1.2 alpha 4 released
...information it can find. This understanding also enables it to wipe out the attackers connection most of the time, assuming you tell it to send signals. The kill scanning can easily be "ported" to other platforms by supplying a file called <system name>_killscan.h which #defines MAX_PROC to the largest possible process id+1. Once this file is writen the configure script will automatically sense its presence and turn on the kill scanning code. (If you do write such a header please email it to me). kill scanning tries all possible pids and uses the feature of most systems that d...
2006 Jun 26
2
running lighttpd -> Recognition failed for "/"
...fastcgi.txt for more info fastcgi.server = ( ".fcgi" => ( "test" => ( "socket" => "/tmp/test1.socket", "bin-path" => "/home/sergio/test/public/dispatch.fcgi", "min-procs" => 1, "max_procs" => 2 ) ) ) <mime parts snipped out> i am sure i forgot to include something that would be really helpful.. but i hope this is enough for now.. thanks! -- Posted via http://www.ruby-forum.com/.
2006 Mar 21
5
RoR and Growing Pains
..."socket" => "/tmp/test1.socket", 154 "bin-path" => "/home/rsamour/test/public/dispatch.fcgi", 155 "min-procs" => 1, 156 "max_procs" => 2 157 ) 158 ) 159 ) 160 } Thanks in advance, -ro-