X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fapache2%2Fmanifests%2Finit.pp;h=64bf7ffc87e0d777ad6c81eb9c001536b884e3ff;hb=9bae656af351e443a599481fa36acf52f93199bf;hp=283ce50e9e77249e291268443b4ad0d7bd094a49;hpb=f29271d22a9f346a558cd70d2e6deb97c7900016;p=mirror%2Fdsa-puppet.git diff --git a/modules/apache2/manifests/init.pp b/modules/apache2/manifests/init.pp index 283ce50e9..64bf7ffc8 100644 --- a/modules/apache2/manifests/init.pp +++ b/modules/apache2/manifests/init.pp @@ -11,12 +11,23 @@ # script heavy (say the bug tracking system), set this # to reduce the number of worker threads. # @param rlimitnproc A resource limit for number of processes. The default is usually fine. +# @param rlimitmem A resource limit for memory usage. The default is usually fine. # @param public Whether this host's apache should be accessible from the public internet. # Sets appropriate firewall rules and optionally rate limits. +# @param mpm Which Multi-Processing Modules to use. Defaults to worker; +# the alternative is prefork. +# @param rate_limit Rate limit incoming connections at the netfilter level. If false, +# (and public is true), all incoming connections to the http +# and https ports get sent to the http chain, and accepted at +# ferm prio 90, so other things can be done to web traffic +# before that. class apache2( Boolean $smaller_number_of_threads = false, Integer $rlimitnproc = 256, + Integer $rlimitmem = 192 * 1024 * 1024, Boolean $public = true, + Enum['prefork','worker'] $mpm = 'worker', + Boolean $rate_limit = false, ) { include webserver @@ -52,20 +63,6 @@ class apache2( ensure => absent, } - if has_role('udd') { - $memlimit = 512 * 1024 * 1024 - } elsif has_role('dgit_git') { - $memlimit = 512 * 1024 * 1024 - } elsif has_role('sso') { - $memlimit = 512 * 1024 * 1024 - } elsif has_role('popcon') { - $memlimit = 512 * 1024 * 1024 - } elsif has_role('qamaster') { - $memlimit = 300 * 1024 * 1024 - } else { - $memlimit = 192 * 1024 * 1024 - } - apache2::config { 'resource-limits': content => template('apache2/resource-limits.erb'), } @@ -107,13 +104,9 @@ class apache2( } apache2::module { 'mpm_event': ensure => absent } - if has_role('apache_prefork') { - apache2::module { 'mpm_worker': ensure => absent } - apache2::module { 'mpm_prefork': } - } else { - apache2::module { 'mpm_prefork': ensure => absent } - apache2::module { 'mpm_worker': } - } + apache2::module { 'mpm_worker' : ensure => ($mpm == 'worker' ) ? { true => 'present', default => absent } } + apache2::module { 'mpm_prefork': ensure => ($mpm == 'prefork') ? { true => 'present', default => absent } } + file { '/etc/apache2/mods-available/mpm_worker.conf': content => template('apache2/mpm_worker.erb'), } @@ -144,20 +137,22 @@ class apache2( } if $public { - if has_role('apache_ratelimited') { + ferm::rule { 'dsa-http': + prio => '23', + description => 'A web subchain', + domain => '(ip ip6)', + rule => 'proto tcp dport (http https 6081) jump http' + } + + if $rate_limit { include apache2::dynamic } else { - ferm::rule { 'dsa-http': - prio => '23', - description => 'Allow web access', - rule => '&SERVICE(tcp, (http https))' - } - - ferm::rule { 'dsa-http-v6': - domain => '(ip6)', - prio => '23', - description => 'Allow web access', - rule => '&SERVICE(tcp, (http https))' + ferm::rule { 'dsa-http-allow': + description => 'http subchain, allow everything', + prio => '90', + chain => 'http', + domain => '(ip ip6)', + rule => 'jump ACCEPT', } } }