From 09f04cdbddd45cb7074086a650cd3415c5b0fa70 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 3 Jun 2014 08:41:09 +0100 Subject: [PATCH] Enable socache_shmcb for apache SSL support on 14.04 --- cookbooks/apache/recipes/ssl.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cookbooks/apache/recipes/ssl.rb b/cookbooks/apache/recipes/ssl.rb index 356416795..83280244a 100644 --- a/cookbooks/apache/recipes/ssl.rb +++ b/cookbooks/apache/recipes/ssl.rb @@ -24,6 +24,10 @@ node.default[:ssl][:certificates] = node[:ssl][:certificates] | [ certificate ] include_recipe "apache" include_recipe "ssl" +apache_module "socache_shmcb" do + only_if { node[:lsb][:release].to_f >= 14.04 } +end + apache_module "ssl" template "/etc/apache2/conf.d/ssl" do -- 2.43.2