X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/5d5c90a9d90bc90b48b50f582e6854ba1c4c941d..b7858d9e79876bd35ae711de3a9df4f57b50e0e2:/roles/tilecache.rb?ds=sidebyside diff --git a/roles/tilecache.rb b/roles/tilecache.rb index 68690730c..a78cac73d 100644 --- a/roles/tilecache.rb +++ b/roles/tilecache.rb @@ -9,20 +9,11 @@ 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 +37,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 => { @@ -74,6 +65,15 @@ default_attributes( "kernel.sched_wakeup_granularity_ns" => "15000000" } } + }, + :tools => { + :cron => { + :load => { + :nice => 19, + :io_scheduling_class => "best-effort", + :io_scheduling_priority => 7 + } + } } )