X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/868dbb785525168c1d36f121bf83ebdd6c1aba51..090fe909149f22d158c859a7d4a9edfb523df2fb:/cookbooks/networking/recipes/default.rb diff --git a/cookbooks/networking/recipes/default.rb b/cookbooks/networking/recipes/default.rb index 0ed0841bf..09b431fd3 100644 --- a/cookbooks/networking/recipes/default.rb +++ b/cookbooks/networking/recipes/default.rb @@ -216,7 +216,7 @@ firewall_rule "limit-icmp-echo" do rate_limit "s:1/sec:5" end -%w(ucl ic bm aws).each do |zone| +%w[ucl ic bm aws].each do |zone| firewall_rule "accept-openvpn-#{zone}" do action :accept family :inet @@ -336,6 +336,8 @@ firewall_rule "accept-http" do dest "fw" proto "tcp:syn" dest_ports "http" + rate_limit node[:networking][:firewall][:http_rate_limit] + connection_limit node[:networking][:firewall][:http_connection_limit] end firewall_rule "accept-https" do @@ -344,4 +346,6 @@ firewall_rule "accept-https" do dest "fw" proto "tcp:syn" dest_ports "https" + rate_limit node[:networking][:firewall][:http_rate_limit] + connection_limit node[:networking][:firewall][:http_connection_limit] end