PHP application server (like thin or mongrel)

application-serverPHP

I'm scaling a PHP application to multiple servers with a frontend webserver (running Apache) for static files and proxying dynamic requests for two application servers. My question is how do I run PHP on the application servers? From the Rails world I know application servers like Mongrel or thin which can host the application. What are the equivalents in PHP-land?

Best Answer

You should take a look at PHP-FPM. It is a PHP FastCGI implementation that should let you separate the PHP to its own application server.

Related Topic