Code Monkey home page Code Monkey logo

Comments (5)

danielwaterworth avatar danielwaterworth commented on August 27, 2024

You need to put a webserver in front of it, like nginx, apache, etc. You may find the spawn-fcgi program useful.

from raphters.

aaronlifton3 avatar aaronlifton3 commented on August 27, 2024

Thanks so much for the help.

Unfortunately, it exits after 100ms with code 1. I also rebuilt it and tried again.

system in build/ on master 
› spawn-fcgi -p 4000 ./simple
spawn-fcgi: child exited with: 1

system in build/ on master 
› sudo spawn-fcgi -p 5678 simple    
spawn-fcgi: child exited with: 1

from raphters.

aaronlifton3 avatar aaronlifton3 commented on August 27, 2024

How can I use this with apache? I would like to continue development of this project.

from raphters.

danielwaterworth avatar danielwaterworth commented on August 27, 2024

I made it work with nginx using this configuration:

events {
  worker_connections 1024;
}

http {
  server {
    listen 80;
    server_name localhost;

    location / {
      fastcgi_pass   127.0.0.1:9000;

      fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
      fastcgi_param  SERVER_SOFTWARE    nginx;
      fastcgi_param  QUERY_STRING       $query_string;
      fastcgi_param  REQUEST_METHOD     $request_method;
      fastcgi_param  CONTENT_TYPE       $content_type;
      fastcgi_param  CONTENT_LENGTH     $content_length;
      fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
      fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
      fastcgi_param  REQUEST_URI        $request_uri;
      fastcgi_param  DOCUMENT_URI       $document_uri;
      fastcgi_param  DOCUMENT_ROOT      $document_root;
      fastcgi_param  SERVER_PROTOCOL    $server_protocol;
      fastcgi_param  REMOTE_ADDR        $remote_addr;
      fastcgi_param  REMOTE_PORT        $remote_port;
      fastcgi_param  SERVER_ADDR        $server_addr;
      fastcgi_param  SERVER_PORT        $server_port;
      fastcgi_param  SERVER_NAME        $server_name;
      fastcgi_param  PATH_INFO          $fastcgi_script_name;
    }
  }
}

I built it like this:

mkdir build
cd build
cmake ../
make

And ran it like this:

spawn-fcgi -p 9000 ./simple -n # in one terminal
sudo nginx -p ./ -c nginx.conf # in another terminal

from raphters.

aaronlifton3 avatar aaronlifton3 commented on August 27, 2024

Thanks so much. Works now. Appreciate the help.

from raphters.

Related Issues (10)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.