X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/c920d6ceed76aa66b56b16b1a58ce4de01f4a992..bb6a3be37eb6b0de039c6451dcad0fe3bddbf55d:/roles/tilecache.rb diff --git a/roles/tilecache.rb b/roles/tilecache.rb index 8353a2120..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 => { @@ -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 + } + } } )