소스 검색

fix(map): fix missing value for php.lookup.fpm.user in multi-php mode

This fixes the rendering issue:

[CRITICAL] Rendering SLS 'base:php.ng.fpm.config' failed: Jinja variable 'dict object' has no attribute 'user'

When using multiple php versions, this is issued by "{{ php.lookup.fpm.user }}" from php/ng/fpm/config.sls

Add default users in group in the relevant 'fpm' dict from map.jinja
(this is to set owner and group to 'pool.d' directory).
tags/v0.40.1
Philippe Pepiot 5 년 전
부모
커밋
f91d942cfb
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      php/ng/map.jinja

+ 2
- 0
php/ng/map.jinja 파일 보기

@@ -2272,6 +2272,8 @@
'conf': confdir + '/fpm/php-fpm.conf',
'ini': confdir + '/fpm/php.ini',
'pools': confdir + '/fpm/pool.d',
'user': 'root',
'group': 'root',
'service': 'php' + phpng_version + '-fpm',
'user': 'root',
'group': 'root',

Loading…
취소
저장