I would like to use PHP with FastCGI as described in the documentation. But my site is very busy, and 6 child processes isn't enough. How can I configure my app to use more processes? asked 22 Aug '13, 01:18 SethKinast |
Because Webfaction only provides handlers for 1-6 child processes, you'll need to create your own handler script based off the ones found in In the root directory of your app, place two files. In this example we'll be using PHP 5.4 and creating 12 child processes. php54-fcgi-custom.fcgi
.htaccess
Make sure your
Now, load your app and you should see 12 answered 22 Aug '13, 01:18 SethKinast As per a recent support ticket, thought this was useful to share as it took several iterations to find something that worked.
(22 Aug '13, 01:18)
SethKinast
|