X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/48b9c97a05f498dfd2b0b99a0328da4622c317b5..d99bcca7c473dc4d4b19b3b64020d28b00030044:/roles/tilecache.rb diff --git a/roles/tilecache.rb b/roles/tilecache.rb index ac17511a0..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,13 @@ 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 => { + :comment => "Allow tcp timewait reuse", + :parameters => { + "net.ipv4.tcp_tw_reuse" => 1 } }, :kernel_tfo_listen_enable => { @@ -68,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 + } + } } )