X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/5d5c90a9d90bc90b48b50f582e6854ba1c4c941d..2d6d56f75a35f748f19411b043b7fc430bdb3c6e:/roles/tilecache.rb diff --git a/roles/tilecache.rb b/roles/tilecache.rb index 68690730c..a76af78a7 100644 --- a/roles/tilecache.rb +++ b/roles/tilecache.rb @@ -9,20 +9,8 @@ default_attributes( } } }, - :apt => { - :sources => ["nginx"] - }, - :networking => { - :tcp_fastopen_key => "tile" - }, :nginx => { - :access_log => false, - :cache => { - :proxy => { - :enable => true, - :keys_zone => "proxy_cache_zone:64M", - } - } + :access_log => false }, :sysctl => { :sockets => { @@ -46,7 +34,7 @@ default_attributes( :network_local_port_range => { :comment => "Increase available local port range", :parameters => { - "net.ipv4.ip_local_port_range" => "1024\t65000" + "net.ipv4.ip_local_port_range" => "1024\t65535" } }, :network_tcp_timewait_reuse => { @@ -55,12 +43,6 @@ default_attributes( "net.ipv4.tcp_tw_reuse" => 1 } }, - :kernel_tfo_listen_enable => { - :comment => "Enable TCP Fast Open for listening sockets", - :parameters => { - "net.ipv4.tcp_fastopen" => 3 - } - }, :squid_swappiness => { :comment => "Prefer not to swapout to free memory", :parameters => { @@ -74,6 +56,15 @@ default_attributes( "kernel.sched_wakeup_granularity_ns" => "15000000" } } + }, + :tools => { + :cron => { + :load => { + :nice => 19, + :io_scheduling_class => "best-effort", + :io_scheduling_priority => 7 + } + } } )