From 062a5434dfc3d0eaee7d75ffdd95dd6672eaa719 Mon Sep 17 00:00:00 2001 From: Chris Buechler Date: Tue, 24 May 2016 18:12:19 -0500 Subject: [PATCH] Set request_terminate_timeout to the same as max_execution_time in case something executed externally doesn't respond, to avoid hanging up all of php-fpm eventually. Ticket #6318 among other similar potential issues. --- src/etc/rc.php_ini_setup | 1 + 1 file changed, 1 insertion(+) diff --git a/src/etc/rc.php_ini_setup b/src/etc/rc.php_ini_setup index 03c31485b8..dfb8139a4d 100755 --- a/src/etc/rc.php_ini_setup +++ b/src/etc/rc.php_ini_setup @@ -191,6 +191,7 @@ expose_php = Off implicit_flush = true magic_quotes_gpc = Off max_execution_time = 900 +request_terminate_timeout = 900 max_input_time = 1800 max_input_vars = 5000 register_argc_argv = On