Issue Summary
I noticed that my Local site appears to have only two CGI / FastCGI processes. This setup means that my site can only accommodate two HTTP requests at the same time. I would like to increase this number of FastCGI processes so that my localhost site can serve additional HTTP requests simultaneously.
My setup uses nginx webserver so normally it’s as simple as just tweaking the upstream php block (example here). The default site.conf.hbs appears to be the right config to adjust this; however, the handlebar file uses fastcgi_servers
variable which I don’t know if it’s possible to adjust nor could I find any documentation on this variable:
upstream php {
{{#each fastcgi_servers}}
server {{this}};
{{/each}}
}
This question appears to be similar to this one although no responses were given.
System Details
- Local v5.9.8+5191 on Windows 10 20H2
- Site is using PHP 8 with nginx and MySQL 8