Correct path for php pool template

This commit is contained in:
Daniel Berteaud 2017-07-13 17:56:15 +02:00
parent 52db1b9e75
commit 6c1b33e547
1 changed files with 10 additions and 8 deletions

View File

@ -1,14 +1,15 @@
{
if (($dl{status'} || 'disabled) eq 'enabled'){
$OUT .=<<_EOF;
[php71-dl]
if ($PHP_VERSION eq '56'){
if (($dl{status'} || 'disabled) eq 'enabled'){
$OUT .=<<_EOF;
[php56-dl]
user = www
group = www
listen.owner = root
listen.group = www
listen.mode = 0660
listen = /var/run/php-fpm/php71-dl.sock
listen = /var/run/php-fpm/php56-dl.sock
pm = dynamic
pm.max_children = 15
pm.start_servers = 3
@ -37,9 +38,10 @@ php_admin_flag[allow_url_include] = off
php_admin_value[session.save_handler] = files
php_admin_value[output_buffering] = off
_EOF
}
else{
$OUT .= '; Dl is disabled';
}
}
else{
$OUT .= '; Dl is disabled';
}
}
}