# limitations under the License.
#
-include_recipe "apache"
include_recipe "php"
+include_recipe "prometheus"
package "php-fpm"
-service "php#{node[:php][:version]}-fpm" do
- action [:enable, :start]
+template "/etc/php/#{node[:php][:version]}/fpm/conf.d/99-chef.ini" do
+ source "php-fpm.ini.erb"
+ owner "root"
+ group "root"
+ mode "644"
+ notifies :restart, "service[php#{node[:php][:version]}-fpm]"
end
-apache_module "proxy"
-apache_module "proxy_fcgi"
-
-apache_conf "php#{node[:php][:version]}-fpm" do
- action :enable
+service "php#{node[:php][:version]}-fpm" do
+ action [:enable, :start]
end