PHP-FPM vs Spawn-FCGI

I'm using Nginx + Spawn-fcgi + PHP + MySQL + PostgreSQL, but I have a question, what is the best, and which the easiest to configure, www/spawn-fcgi or php-fpm?

Sorry if I'm talking about something stupid, do not know if these ports perform the same function.

Thanks in advance.
 
I've been using php-fpm with nginx with good results. It basically worked "out of the box" with very little tweaking. The latest php-fpm even supports freebsd queue. Tip: your can setup php and nginx in separate jails communicating via loopback for an added measure of isolation.

It's been in production serving various PHP apps like Roundcube and Moodle with no problems
 
Sorry the auto correct in my browser ate the "k" in "kqueue" . :) IMHO there's no real reason for using spawn-fcgi, since php-fpm was integrated into PHP 5.4. Better to get everything from the same vendor so you know who to blame when things go down in flames ;)
 
Back
Top