X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/f11aec497a1d6a2f360f0d5e9b6f60d726a09f9a..87b9b235f9dce7bbae047306ab7b40fc83e717af:/cookbooks/php/recipes/fpm.rb diff --git a/cookbooks/php/recipes/fpm.rb b/cookbooks/php/recipes/fpm.rb index be90a6783..2bebc87d2 100644 --- a/cookbooks/php/recipes/fpm.rb +++ b/cookbooks/php/recipes/fpm.rb @@ -17,8 +17,8 @@ # limitations under the License. # -include_recipe "apache" include_recipe "php" +include_recipe "prometheus" package "php-fpm" @@ -26,16 +26,10 @@ template "/etc/php/#{node[:php][:version]}/fpm/conf.d/99-chef.ini" do source "php-fpm.ini.erb" owner "root" group "root" - mode 0o644 + mode "644" + notifies :restart, "service[php#{node[:php][:version]}-fpm]" end service "php#{node[:php][:version]}-fpm" do action [:enable, :start] end - -apache_module "proxy" -apache_module "proxy_fcgi" - -apache_conf "php#{node[:php][:version]}-fpm" do - action :enable -end