Saltstack Official PHP Formula
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

php.ini 824B

12345678910111213141516171819202122232425262728
  1. {%- macro php_block(section, settings) %}
  2. {%- if settings is number or settings is string %}
  3. {{ section }} = {{ settings }}
  4. {%- else %}
  5. [{{ section }}]
  6. {%- for setting, value in settings.items() -%}
  7. {%- if value is number or value is string %}
  8. {{ setting }} = {{ value }}
  9. {%- elif value is iterable -%}
  10. {%- if setting == 'error_reporting' %}
  11. {{ setting }} = {{ value|join(" & ") }}
  12. {%- else %}
  13. {{ setting }} = {{ value|join(",") }}
  14. {%- endif -%}
  15. {%- endif %}
  16. {%- endfor -%}
  17. {%- endif -%}
  18. {%- endmacro -%}
  19. ; PHP configuration file.
  20. ;
  21. ; **** DO NOT EDIT THIS FILE ****
  22. ;
  23. ; This file is managed by Salt
  24. {%- for section, settings in config.items() -%}
  25. {{ php_block(section, settings) }}
  26. {%- endfor -%}