]> git.openstreetmap.org Git - chef.git/blobdiff - roles/tilecache.rb
Make tilecache cookbook enable nginx cache automatically
[chef.git] / roles / tilecache.rb
index 6a8acf32f074b9018f0628642b34d33964cf4004..a78cac73d107b1ca67666fd469da117ccb45206e 100644 (file)
@@ -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 65000"
+        "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
+      }
+    }
   }
 )