Enable configuration via variables

This commit is contained in:
phil 2023-10-16 12:50:11 +02:00
parent 61299bb763
commit 90de9d5861
6 changed files with 39 additions and 71 deletions

7
templates/php-fpm.ini.j2 Normal file
View file

@ -0,0 +1,7 @@
; Ansible managed
{% if php_fpm_config is defined %}
{% for key, value in php_fpm_config.items() %}
{{ key }} = {{ value }}
{% endfor %}
{% endif %}