Saltstack Official PHP Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 10 години
преди 10 години
преди 10 години
преди 9 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. ## php.ng pillar examples
  2. php:
  3. # Use ppa instead the default repository (only Debian family)
  4. use_ppa: True
  5. # Set the ppa name (valid only if use_ppa is not none)
  6. ppa_name: 'ondrej/php5'
  7. # Set the MongoDB driver version. You can specify (optionally) the driver version
  8. # when you add the php.mongo formula to your execution list
  9. mongo_version: "1.5.5"
  10. ng:
  11. # this section contains mostly grain filtered data, while overrides
  12. # are possible in the pillar for unique cases, if your OS is not
  13. # represented, please consider adding it to the map.jinja for
  14. # upstream inclusion
  15. lookup:
  16. # package definitions, these can be strings, lists of strings, or
  17. # lists of dictionaries
  18. pkgs:
  19. memcached: php5-memcached
  20. # ensures both will be installed
  21. curl:
  22. - php-common
  23. - curl
  24. # a dictionary can be used in more complex cases where you want
  25. # to pass forward special arguments to the pkg.installed call
  26. # you MUST include the name argument for this to work
  27. cli:
  28. -
  29. name: php-cli
  30. fromrepo: my-specialrepo
  31. -
  32. name: php-common
  33. skip_verify: True
  34. # php-fpm os-specific settings
  35. fpm:
  36. conf: /location/of/php-fpm/config.conf
  37. ini: /location/of/php-fpm/php.ini
  38. pools: /location/of/php-fpm/pool.d
  39. service: name-of-php5-fpm-service
  40. # the default content of the php5-fpm main config file
  41. defaults:
  42. global:
  43. pid: /var/run/php5-fpm.pid
  44. # php-cli os-specific settings
  45. cli:
  46. ini: /location/of/php-cli/php.ini
  47. # php-fpm settings
  48. fpm:
  49. # settings for the php-fpm service
  50. service:
  51. # if True, enables the php-fpm service, if False disables it
  52. enabled: True
  53. # additional arguments passed forward to
  54. # service.enabled/disabled
  55. opts:
  56. reload: True
  57. # settings for the relevant php-fpm configuration files
  58. config:
  59. # options to manage the php.ini file used by php-fpm
  60. ini:
  61. # arguments passed through to file.managed
  62. opts:
  63. recurse: True
  64. # php.ini file contents that will be merged with the
  65. # defaults in php.ng.ini.defaults. See php.ng.ini.defaults for
  66. # syntax guidelines.
  67. settings:
  68. PHP:
  69. engine: 'Off'
  70. extension_dir: '/usr/lib/php/modules/'
  71. extension: [pdo_mysql.so, iconv.so, openssl.so]
  72. # options to manage the php-fpm conf file
  73. conf:
  74. # arguments passed through to file.managed
  75. opts:
  76. recurse: True
  77. # php-fpm conf file contents that will be merged with
  78. # php.ng.lookup.fpm.defaults. See php.ng.ini.defaults for
  79. # ini-style syntax guidelines.
  80. settings:
  81. global:
  82. pid: /var/run/php-fpm/special-pid.file
  83. # settings for fpm-pools
  84. pools:
  85. # name of the pool file to be managed, this will be appended
  86. # to the path specified in php.ng.lookup.fpm.pools
  87. 'mypool.conf':
  88. # If true, the pool file will be managed, if False it will be
  89. # absent
  90. enabled: True
  91. # arguments passed forward to file.managed or file.absent
  92. opts:
  93. replace: False
  94. # pool file contents. See php.ng.ini.defaults for ini-style
  95. # syntax guidelines.
  96. settings:
  97. myapp:
  98. user: www-data
  99. group: www-data
  100. listen: /var/run/php5-fpm-myapp.sock
  101. listen.owner: www-data
  102. listen.group: www-data
  103. listen.mode: 0660
  104. pm: dynamic
  105. pm.max_children: 5
  106. pm.start_servers: 2
  107. pm.min_spare_servers: 1
  108. pm.max_spare_servers: 3
  109. 'php_admin_value[memory_limit]': 300M
  110. # php-cli settings
  111. cli:
  112. # settings to manage the cli's php.ini
  113. ini:
  114. # opts passed forward directly to file.managed
  115. opts:
  116. replace: False
  117. # contents of the php.ini file that are merged with defaults
  118. # from php.ng.ini.defaults. See php.ng.ini.defaults for ini-style
  119. # syntax guidelines
  120. settings:
  121. PHP:
  122. engine: 'Off'
  123. # global php.ini settings
  124. ini:
  125. # Default php.ini contents. These follow a strict format. The top-
  126. # level dict keys form ini group headings. Nested key/value
  127. # pairs represent setting=value statements. If a value is a list,
  128. # its contents will be joined by commas in final rendering.
  129. defaults:
  130. PHP:
  131. engine: on
  132. output_buffering: 4096
  133. disable_functions:
  134. - pcntl_alarm
  135. - pcntl_fork
  136. - pcntl_wait
  137. 'CLI Server':
  138. cli_server_color: 'On'