php-config.ini.j2 439 B

1234567891011121314151617181920212223242526
  1. {% if ansible_controlled is defined and ansible_controlled != "" %}
  2. ;
  3. ; {{ ansible_controlled }}
  4. ;
  5. {% endif %}
  6. ;
  7. ; PHP configuration
  8. ;
  9. {% if php_config is defined %}
  10. ;
  11. ; Main settings
  12. ;
  13. {% for param in php_config %}
  14. {{ param.key }} = {{ param.value }}
  15. {% endfor %}
  16. {% endif %}
  17. {% if php_local_config is defined %}
  18. ;
  19. ; This host overrides
  20. ;
  21. {% for param in php_local_config %}
  22. {{ param.key }} = {{ param.value }}
  23. {% endfor %}
  24. {% endif %}