Merge branch 'PHP-8.2'

This commit is contained in:
Jakub Zelenka 2023-01-12 13:55:47 +00:00
commit da4775f071
No known key found for this signature in database
GPG Key ID: 1C0779DC5C0A9DE4
4 changed files with 5 additions and 1 deletions

View File

@ -1801,7 +1801,8 @@ consult the installation file that came with this distribution, or visit \n\
zend_quiet_write(fpm_globals.send_config_pipe[1], &writeval, sizeof(writeval));
close(fpm_globals.send_config_pipe[1]);
}
return FPM_EXIT_CONFIG;
exit_status = FPM_EXIT_CONFIG;
goto out;
}
if (fpm_globals.send_config_pipe[1]) {

View File

@ -14,6 +14,7 @@ $cfg = <<<EOT
error_log = {{FILE:LOG}}
[unconfined]
listen = {{ADDR:UDS}}
user = root
group = aaaaaa
pm = dynamic
pm.max_children = 5

View File

@ -15,6 +15,7 @@ error_log = {{FILE:LOG}}
[unconfined]
listen = {{ADDR:UDS}}
listen.group = aaaaaa
user = root
pm = dynamic
pm.max_children = 5
pm.start_servers = 2

View File

@ -15,6 +15,7 @@ error_log = {{FILE:LOG}}
[unconfined]
listen = {{ADDR:UDS}}
listen.owner = aaaaaa
user = root
pm = dynamic
pm.max_children = 5
pm.start_servers = 2