Vendor the external cookbooks
Knife-Zero doesn't include Berkshelf support, so vendoring everything in the repo is convenient again
This commit is contained in:
1225
cookbooks/php/templates/centos/php.ini.erb
Normal file
1225
cookbooks/php/templates/centos/php.ini.erb
Normal file
File diff suppressed because it is too large
Load Diff
1834
cookbooks/php/templates/debian/php.ini.erb
Normal file
1834
cookbooks/php/templates/debian/php.ini.erb
Normal file
File diff suppressed because it is too large
Load Diff
7
cookbooks/php/templates/default/extension.ini.erb
Normal file
7
cookbooks/php/templates/default/extension.ini.erb
Normal file
@@ -0,0 +1,7 @@
|
||||
; configuration for php <%= @name %> module
|
||||
<% @extensions.each do |filepath, zend| -%>
|
||||
<%= 'zend_' if zend %>extension=<%= filepath %>
|
||||
<% end -%>
|
||||
<% @directives.each do |k,v| -%>
|
||||
<%= "#{@name}.#{k}=#{v}" %>
|
||||
<% end -%>
|
||||
15
cookbooks/php/templates/default/fpm-pool.conf.erb
Normal file
15
cookbooks/php/templates/default/fpm-pool.conf.erb
Normal file
@@ -0,0 +1,15 @@
|
||||
[<%= @fpm_pool_name %>]
|
||||
user = <%= @fpm_pool_user %>
|
||||
group = <%= @fpm_pool_group %>
|
||||
listen = <%= @fpm_pool_listen %>
|
||||
listen.owner = <%= @fpm_pool_listen_user %>
|
||||
listen.group = <%= @fpm_pool_listen_group %>
|
||||
pm = <%= @fpm_pool_manager %>
|
||||
pm.max_children = <%= @fpm_pool_max_children %>
|
||||
pm.start_servers = <%= @fpm_pool_start_servers %>
|
||||
pm.min_spare_servers = <%= @fpm_pool_min_spare_servers %>
|
||||
pm.max_spare_servers = <%= @fpm_pool_max_spare_servers %>
|
||||
chdir = <%= @fpm_pool_chdir %>
|
||||
<% @fpm_pool_additional_config.each do |key, value| %>
|
||||
<%= key %> = <%= value %>
|
||||
<% end %>
|
||||
1877
cookbooks/php/templates/default/php.ini.erb
Normal file
1877
cookbooks/php/templates/default/php.ini.erb
Normal file
File diff suppressed because it is too large
Load Diff
1225
cookbooks/php/templates/redhat/php.ini.erb
Normal file
1225
cookbooks/php/templates/redhat/php.ini.erb
Normal file
File diff suppressed because it is too large
Load Diff
1834
cookbooks/php/templates/ubuntu/php.ini.erb
Normal file
1834
cookbooks/php/templates/ubuntu/php.ini.erb
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user