Browse Source

Merge 07c960ed64 into 9c69a4e906

pull/209/merge
Sergio Cambra 2 years ago
parent
commit
7383a2c4bd
No account linked to committer's email address
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      php/fpm/config.sls
  2. +1
    -1
      php/map.jinja

+ 1
- 1
php/fpm/config.sls View File

@@ -26,7 +26,7 @@
{%- do conf_settings.update({key: value.replace(first_version, version)}) %}
{%- endif %}
{%- endfor %}
{%- do conf_settings.global.update({'pid': '/var/run/php' + version + '-fpm.pid' }) %}
{%- do conf_settings.global.update({'pid': '/run/php/php' + version + '-fpm.pid' }) %}
{%- do conf_settings.global.update({'error_log': '/var/log/php' + version + '-fpm.log' }) %}

php_fpm_ini_config_{{ version }}:

+ 1
- 1
php/map.jinja View File

@@ -2417,7 +2417,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', confdir + '/fpm/pool.d/*.conf'),

Loading…
Cancel
Save