Browse Source

fix(map.jinja): fix pid file location for debian

The PID file location for Debian changed recently
see https://www.patreon.com/posts/february-updates-34189046
and https://github.com/oerdnj/deb.sury.org/issues/1334
tags/v1.3.0
sylvainfaivre 4 years ago
parent
commit
393d69eb0f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      php/map.jinja

+ 1
- 1
php/map.jinja View File

'group': 'root', 'group': 'root',
'defaults': odict([ 'defaults': odict([
('global', odict([ ('global', odict([
('pid', '/var/run/php' + php_version + '-fpm.pid'),
('pid', '/run/php/php' + php_version + '-fpm.pid'),
('error_log', '/var/log/php' + php_version + '-fpm.log'), ('error_log', '/var/log/php' + php_version + '-fpm.log'),
])), ])),
('include', '/etc/php/' + php_version + '/fpm/pool.d/*.conf'), ('include', '/etc/php/' + php_version + '/fpm/pool.d/*.conf'),

Loading…
Cancel
Save