I am running the latest version of lighttpd on ubuntu and I am doing fastcgi using c++.

Below is my c++ code and the config file and the error. I suspect the config file. What is wrong? Please help.....

#include <stdlib.h>
#include <unistd.h>
extern char ** environ;
#include "fcgio.h"
#include "fcgi_config.h"  // HAVE_IOSTREAM_WITHASSIGN_STREAMBUF
#include "fcgi_stdio.h"

using namespace std;
int main()
  {
      int count = 1;
      while(FCGI_Accept() >= 0)
          printf("Content-type: text/html\r\n"
                 "\r\n"
                 "<title>FastCGI Hello!</title>"
                 "<h1>FastCGI Hello!</h1>"
                 "Request number %d running on host <i>%s</i>\n",
                  ++count, getenv("SERVER_NAME"));
      return 0;
  }

Here is my config file:

server.port = 8080
server.bind = "127.0.0.1"
server.modules   = ( "mod_fastcgi" )
server.document-root = "/var/www/"
## where to send error-messages to
server.errorlog             = "/etc/lighttpd/error_logs/error.log"

##server.max-worker = 1 #Set worker to two times CPU --- workers equal to two times the number of cores 

fastcgi.debug = 1
fastcgi.server = ( ".fcgi" =>
    (
        ( 
          "socket" => "/tmp/fastcgi.socket",
          "bin-path" => "/var/www/rtb.fcgi",
          "min-procs" => 1,
          "max-procs" => 1
        )
    )
) 

Here is is the error log file when I start lighttpd:

2012-01-14 17:06:51: (log.c.166) server started 
2012-01-14 17:06:51: (mod_fastcgi.c.1367) --- fastcgi spawning local 
    proc: /var/www/rtb.fcgi 
    port: 0 
    socket /tmp/fastcgi.socket 
    max-procs: 1 
2012-01-14 17:06:51: (mod_fastcgi.c.1391) --- fastcgi spawning 
    port: 0 
    socket /tmp/fastcgi.socket 
    current: 0 / 1 
2012-01-14 17:06:51: (mod_fastcgi.c.1104) the fastcgi-backend /var/www/rtb.fcgi failed to start: 
2012-01-14 17:06:51: (mod_fastcgi.c.1108) child exited with status 8 /var/www/rtb.fcgi 
2012-01-14 17:06:51: (mod_fastcgi.c.1111) If you're trying to run your app as a FastCGI backend, make sure you're using the FastCGI-enabled version.
If this is PHP on Gentoo, add 'fastcgi' to the USE flags. 
2012-01-14 17:06:51: (mod_fastcgi.c.1399) [ERROR]: spawning fcgi failed. 
2012-01-14 17:06:51: (server.c.938) Configuration of plugins failed. Going down. 
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown