1234567891011121314151617181920 |
- {% if ansible_controlled is defined and ansible_controlled != "" %}
- ;
- ; {{ ansible_controlled }}
- ;
- {% endif %}
- ;
- ; local PHP configuration override for apache2
- ;
- {% if php_local_config is defined %}
- {% set _dummy = php_config.update(php_local_config) %}
- {% endif %}
- {% if php_config_web is defined %}
- {% set _dummy = php_config.update(php_config_web) %}
- {% endif %}
- {% if php_local_config_web is defined %}
- {% set _dummy = php_config.update(php_local_config_web) %}
- {% endif %}
- {% for key in php_config %}
- {{ key }} = {{ php_config[key] }}
- {% endfor %}
|