configuration:
php.ini: max_execution_time = 30
php-fpm.conf: request_terminate_timeout = 100
nginx.conf: keepalive_timeout 60
script:
php
echo "start:". Date ("Y-m-d time ()). PHP_EOL;
sleep,
echo "end:". Date (time ());
exit;
result:
did not throw an error, but returned the result:
start:2019-02-25 15:56:26 end:2019-02-25 15:58:26
Why is there no timeout error report?