FastCGI pool

This commit is contained in:
Juan Pablo Vial
2025-06-30 16:39:55 -04:00
parent 4b66694166
commit 829ab86770
3 changed files with 497 additions and 1 deletions

View File

@ -46,7 +46,7 @@ return [
$fcgi = new Incoviba\Service\FastCGI(
$container->get(Incoviba\Service\Login::class),
$container->has('SOCKET_HOST') ? $container->get('SOCKET_HOST') : 'web',
$container->has('SOCKET_PORT') ? $container->get('SOCKET_PORT') : 9000,
$container->has('SOCKET_PORT') ? $container->get('SOCKET_PORT') : 9090,
$container->has('SOCKET_ROOT') ? $container->get('SOCKET_ROOT') : '/code/public/index.php'
);
$fcgi->setLogger($container->get(Psr\Log\LoggerInterface::class));