From: <php...@li...> - 2010-08-04 13:08:58
|
hi, >From PHP 5.3.3, it bundles with the PHP-FPM(http://php-fpm.org/). I have setup PHP-FPM pools that work fine with Nginx, e.g. in Nginx, the following configuration connects to a PHP-FPM process: location ~ \.php$ { ... fastcgi_index index.php; fastcgi_pass unix:/my_path/php-fpm.sock; // also work when using port number ... Does PJB supports PHP-FPM? How to configure the FastCGIServlet to use it? by default, it seems to look for a "php-cgi" binary. Regards, mingfai |