|
ignore_user_abort works well when PHP has been started in self-managed mode, that way, LSWS only start one parent process, that parent process will start children process to serve requests. When a request abort, the children process that handles the request will continue till the request has been finished.
So, you need to set "PHP_LSAPI_CHILDREN" env greater than "Max Connections" for the lsphp external app, and "Instances" should be set to "1".
|