1234567891011121314151617181920212223242526 |
- {% if ansible_controlled is defined and ansible_controlled != "" %}
- ;
- ; {{ ansible_controlled }}
- ;
- {% endif %}
- ;
- ; PHP configuration
- ;
- {% if php_config is defined %}
- ;
- ; Main settings
- ;
- {% for param in php_config %}
- {{ param.key }} = {{ param.value }}
- {% endfor %}
- {% endif %}
- {% if php_local_config is defined %}
- ;
- ; This host overrides
- ;
- {% for param in php_local_config %}
- {{ param.key }} = {{ param.value }}
- {% endfor %}
- {% endif %}
|