Merge pull request #1 from IventureGroup/master

Add possibility to define default values for php-fpm pools
This commit is contained in:
Vitali Quiering 2017-10-17 11:09:47 +02:00 committed by GitHub
commit 68610ddae6
2 changed files with 12 additions and 0 deletions

View File

@ -10,6 +10,12 @@
{% set pool_states = [] %}
{% for pool, config in php.fpm.pools.iteritems() %}
{% if pool == 'defaults' %}{% continue %}{% endif %}
{% for pkey, pvalues in config.get('settings', {}).iteritems() %}
{% set pool_defaults = php.fpm.pools.get('defaults', {}).copy() %}
{% do pool_defaults.update(pvalues) %}
{% do pvalues.update(pool_defaults) %}
{% endfor %}
{% set state = 'php_fpm_pool_conf_' ~ loop.index0 %}
{% set fpath = path_join(config.get('filename', pool), php.lookup.fpm.pools) %}

View File

@ -93,6 +93,12 @@ php:
# settings for fpm-pools
pools:
# defaults will apply for each pools settings and can be overwritten by pool settings
defaults:
user: nginx
group: nginx
listen: /var/run/php-fpm-default.sock
# name of the pool file to be managed, this will be appended
# to the path specified in php.ng.lookup.fpm.pools
'mypool.conf':