# limitations under the License.
#
-package "apache2"
-package "libwww-perl"
+include_recipe "ssl"
-%w(event itk prefork worker).each do |mpm|
+package %w[
+ apache2
+ libwww-perl
+]
+
+%w[event itk prefork worker].each do |mpm|
if mpm == node[:apache][:mpm]
apache_module "mpm_#{mpm}" do
action [:enable]
source "ports.conf.erb"
owner "root"
group "root"
- mode 0644
+ mode 0o644
end
service "apache2" do
conf "deflate.conf.erb"
end
-apache_module "reqtimeout" do
- action [:disable]
+if node[:apache][:reqtimeout]
+ apache_module "reqtimeout" do
+ action [:enable]
+ end
+else
+ apache_module "reqtimeout" do
+ action [:disable]
+ end
+end
+
+apache_module "headers"
+apache_module "ssl"
+
+apache_conf "ssl" do
+ template "ssl.erb"
end
munin_plugin "apache_accesses"