X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/d0446717f1f755850a9698fcf1998e7fc8614837..0364daf8925f1dbba90ee38d58ed2b096db5cffc:/cookbooks/squid/templates/default/squid.conf.erb?ds=sidebyside diff --git a/cookbooks/squid/templates/default/squid.conf.erb b/cookbooks/squid/templates/default/squid.conf.erb index a2f38b73f..dabb406a3 100644 --- a/cookbooks/squid/templates/default/squid.conf.erb +++ b/cookbooks/squid/templates/default/squid.conf.erb @@ -1,7 +1,14 @@ # DO NOT EDIT - This file is being maintained by Chef +#configure host name +visible_hostname <%= node.name %> + #FIXME - configurable cache_mem <%= node[:squid][:cache_mem] %> +<% if node[:squid][:version] > 2 -%> + +workers <%= node[:cpu][:total] %> +<% end -%> max_filedescriptors 98304 @@ -16,9 +23,6 @@ log_icp_queries off http_port 80 accel defaultsite=tile.openstreetmap.org tcpkeepalive=60,10,6 http11 <% else -%> http_port 80 accel no-vhost defaultsite=tile.openstreetmap.org tcpkeepalive=60,10,6 - -#prefer IPv4 until everything is upgraded -dns_v4_first on <% end -%> cache_effective_user proxy @@ -46,7 +50,14 @@ cache_replacement_policy heap LFUDA memory_replacement_policy heap GDSF server_persistent_connections on +<% if node[:squid][:version] < 3 -%> persistent_request_timeout 1 minutes +<% else -%> +client_idle_pconn_timeout 1 minutes +<% end -%> +<% if node[:squid][:version] > 3 -%> +pconn_lifetime 5 minutes +<% end -%> negative_ttl 15 seconds half_closed_clients off @@ -61,7 +72,9 @@ request_timeout 90 seconds connect_timeout 20 seconds client_lifetime 1 hours +<% if node[:squid][:version] < 4 -%> collapsed_forwarding on +<% end -%> <% if node[:squid][:version] < 3 -%> refresh_stale_hit 300 seconds <% end -%>