2

Is there such a thing as a smart standalone FastCGI process manager? I have my custom server in C++ which I am willing to connect to Apache/Nginx as a FastCGI application. Apache has mod_fcgid which offers some process management functionality, but Nginx requires something standalone. Is there such a thing in the wild? I'm trying spawn-fcgi from lighttpd project, but it's just a wrapper, no a real process manager.

Michael Pliskin
  • 2,352
  • 4
  • 26
  • 42

3 Answers3

1

you can try fcgid. https://github.com/chenyf/fcgid, it's a C++ fastcgi server

0

You can try supervisor, it's a light weighted standalone process amanager which not only support fastcgi process management. It can help you to monitoring the processes as a deamon, like your process (fcgi processes or other processes) was killed by some reason, supervisor will restart it automatically.

-2

You can try php-fpm. It works great with Nginx.

xmikex83
  • 945
  • 5
  • 14