php-config.ini.j2 452 B

12345678910111213141516171819202122232425
  1. {% if ansible_prolog -%}
  2. {% from 'templates/ansible/prolog.j2' import prolog with context %}
  3. {{ prolog(';') }}
  4. {% endif -%}
  5. ;
  6. ; PHP configuration
  7. ;
  8. {% if php_config is defined %}
  9. ;
  10. ; Main settings
  11. ;
  12. {% for param in php_config %}
  13. {{ param.key }} = {{ param.value }}
  14. {% endfor %}
  15. {% endif %}
  16. {% if php_local_config is defined %}
  17. ;
  18. ; This host overrides
  19. ;
  20. {% for param in php_local_config %}
  21. {{ param.key }} = {{ param.value }}
  22. {% endfor %}
  23. {% endif %}