From f2b04abe4cd7fc43f2b7a9dcd4d1b3205fe06d5b Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Thu, 4 Sep 2025 09:41:38 +0100 Subject: [PATCH] Use [::] as the default listen address for all apaches https://github.com/openstreetmap/operations/issues/1280 --- cookbooks/apache/attributes/default.rb | 2 +- roles/tile.rb | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/cookbooks/apache/attributes/default.rb b/cookbooks/apache/attributes/default.rb index 075e4c86f..4f4880509 100644 --- a/cookbooks/apache/attributes/default.rb +++ b/cookbooks/apache/attributes/default.rb @@ -26,7 +26,7 @@ default[:apache][:event][:threads_per_child] = 25 default[:apache][:event][:max_request_workers] = 150 default[:apache][:event][:max_connections_per_child] = 0 -default[:apache][:listen_address] = "*" +default[:apache][:listen_address] = "[::]" default[:apache][:buffered_logs] = true diff --git a/roles/tile.rb b/roles/tile.rb index 42f557915..550c99f66 100644 --- a/roles/tile.rb +++ b/roles/tile.rb @@ -12,7 +12,6 @@ default_attributes( }, :apache => { :mpm => "event", - :listen_address => "[::]", :timeout => 60, :evasive => { :enable => false -- 2.39.5