Optimizing PHP-FPM
Summary
Get faster load times of tabs in Organizr.
Windows
Open Command Prompt as an Administrator
Type the following command
set php
and you should see 2 variablesPHP_FCGI_CHILDREN=3
PHP_FCGI_MAX_REQUESTS=128
Run the following command to increase the value of
PHP_FCGI_CHILDREN
SETX /m PHP_FCGI_CHILDREN 1000
Close Command Prompt.
Open Command Prompt as Administrator and run
set php
and check thatPHP_FCGI_CHILDREN
value changed from3
to1000
.
Adapted from: https://technicalramblings.com/blog/optimizing-php-fpm-to-get-faster-load-times-of-tabs-in-organizr/
Last updated