X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/60b19818712842f23e5039de2202f7ee45dbb614..e8b99de75aefd9d6e0412711f8d41e6b24486b72:/cookbooks/php/recipes/apache.rb diff --git a/cookbooks/php/recipes/apache.rb b/cookbooks/php/recipes/apache.rb index 62cf24d66..dc60248ba 100644 --- a/cookbooks/php/recipes/apache.rb +++ b/cookbooks/php/recipes/apache.rb @@ -17,9 +17,16 @@ # limitations under the License. # -node.override[:apache][:mpm] = "prefork" - -include_recipe "php" include_recipe "apache" +include_recipe "php::fpm" + +apache_module "proxy" +apache_module "proxy_fcgi" + +apache_module "php#{node[:php][:version]}" do + action :disable +end -apache_module "php#{node[:php][:version]}" +apache_conf "php#{node[:php][:version]}-fpm" do + action :enable +end