php-config-web.ini.j2 553 B

1234567891011121314151617181920
  1. {% if ansible_controlled is defined and ansible_controlled != "" %}
  2. ;
  3. ; {{ ansible_controlled }}
  4. ;
  5. {% endif %}
  6. ;
  7. ; local PHP configuration override for apache2
  8. ;
  9. {% if php_local_config is defined %}
  10. {% set _dummy = php_config.update(php_local_config) %}
  11. {% endif %}
  12. {% if php_config_web is defined %}
  13. {% set _dummy = php_config.update(php_config_web) %}
  14. {% endif %}
  15. {% if php_local_config_web is defined %}
  16. {% set _dummy = php_config.update(php_local_config_web) %}
  17. {% endif %}
  18. {% for key in php_config %}
  19. {{ key }} = {{ php_config[key] }}
  20. {% endfor %}