php-config-web.ini.j2 566 B

12345678910111213141516171819
  1. {% if ansible_prolog -%}
  2. {% from 'templates/ansible/prolog.j2' import prolog with context %}
  3. {{ prolog(';') }}
  4. {% endif -%}
  5. ;
  6. ; local PHP configuration override for apache2
  7. ;
  8. {% if php_local_config is defined %}
  9. {% set _dummy = php_config.update(php_local_config) %}
  10. {% endif %}
  11. {% if php_config_web is defined %}
  12. {% set _dummy = php_config.update(php_config_web) %}
  13. {% endif %}
  14. {% if php_local_config_web is defined %}
  15. {% set _dummy = php_config.update(php_local_config_web) %}
  16. {% endif %}
  17. {% for key in php_config %}
  18. {{ key }} = {{ php_config[key] }}
  19. {% endfor %}