Saltstack Official PHP Formula
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

40 lines
1.2KB

  1. ## php.ng pillar examples
  2. php:
  3. ng:
  4. # this section contains mostly grain filtered data, while overrides
  5. # are possible in the pillar for unique cases, if your OS is not
  6. # represented, please consider adding it to the map.jinja for
  7. # upstream inclusion
  8. lookup:
  9. # package definitions, these can lists, strings, or dictionaries
  10. pkgs:
  11. memcached: php5-memcached
  12. # ensures both will be installed
  13. curl:
  14. - php-common
  15. - curl
  16. # a dictionary can be used in more complex cases where you want
  17. # to pass forward special arguments to the pkg.installed call
  18. cli:
  19. php-cli:
  20. fromrepo: my-specialrepo
  21. php-common:
  22. fromrepo: my-specialrepo
  23. # php-fpm os-specific settings
  24. fpm:
  25. # the main php-fpm config file
  26. conf: /etc/php5/fpm/php-fpm.conf
  27. # the php-fpm php.ini
  28. ini: /etc/php5/fpm/php.ini
  29. # the location where pools are stored
  30. pools: /etc/php5/fpm/pool.d
  31. # the name of the php-fpm service
  32. service: php5-fpm
  33. # the default content of the php5-fpm main config file
  34. defaults:
  35. global:
  36. pid: /var/run/php5-fpm.pid