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
This commit is contained in:
sylvainfaivre 2020-02-27 10:39:17 +01:00
parent e6393c7a6e
commit 393d69eb0f

View File

@ -107,7 +107,7 @@
'group': 'root',
'defaults': 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'),
])),
('include', '/etc/php/' + php_version + '/fpm/pool.d/*.conf'),