]> git.openstreetmap.org Git - chef.git/blob - cookbooks/squid/templates/default/squid.conf.erb
Enable HTCP on tile caches
[chef.git] / cookbooks / squid / templates / default / squid.conf.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 #configure host name
4 visible_hostname <%= node.name %>
5
6 #FIXME - configurable
7 cache_mem  <%= node[:squid][:cache_mem] %>
8 <% if node[:squid][:version] > 2 -%>
9
10 workers <%= node[:cpu][:total] %>
11
12 error_log_languages off
13 <% end -%>
14
15 max_filedescriptors 98304
16
17 #used by squidclient / munin
18 http_port 3128
19 #HTCP
20 htcp_port 4827
21 #ICP
22 icp_port 3130
23 log_icp_queries off
24
25 #FIXME - configurable
26 <% if node[:squid][:version] < 3 -%>
27 http_port 80 accel defaultsite=tile.openstreetmap.org tcpkeepalive=60,10,6 http11
28 <% else -%>
29 http_port 80 accel no-vhost defaultsite=tile.openstreetmap.org tcpkeepalive=60,10,6
30 <% end -%>
31
32 cache_effective_user proxy
33 cache_effective_group proxy
34
35 #FIXME - configurable
36 <% Array(node[:squid][:cache_dir]).each do |cache_dir| -%>
37 cache_dir <%= cache_dir %>
38 <% end -%>
39 <% if node[:squid][:version] < 3 -%>
40 cache_swap_log /var/spool/squid/%s
41 <% end -%>
42
43 cache_mgr webmaster@openstreetmap.org
44
45 quick_abort_min 0 KB
46 quick_abort_max 0 KB
47
48 read_ahead_gap 64 KB
49
50 maximum_object_size 1048576 bytes
51 maximum_object_size_in_memory 64 KB
52
53 cache_replacement_policy heap LFUDA
54 memory_replacement_policy heap GDSF
55
56 server_persistent_connections on
57 <% if node[:squid][:version] < 3 -%>
58 persistent_request_timeout 1 minutes
59 <% else -%>
60 client_idle_pconn_timeout 1 minutes
61 <% end -%>
62 <% if node[:squid][:version] > 3 -%>
63 pconn_lifetime 5 minutes
64 <% end -%>
65
66 negative_ttl 15 seconds
67 half_closed_clients off
68 <% if node[:squid][:version] < 3 -%>
69 pipeline_prefetch on
70 <% else -%>
71 pipeline_prefetch 1
72 <% end -%>
73
74 read_timeout 90 seconds
75 request_timeout 90 seconds
76 connect_timeout 20 seconds
77 client_lifetime 1 hours
78
79 <% if node[:squid][:version] < 4 -%>
80 collapsed_forwarding on
81 <% end -%>
82 <% if node[:squid][:version] < 3 -%>
83 refresh_stale_hit 300 seconds
84 <% end -%>
85
86 #Recommended minimum configuration:
87 #----------------------------------
88 <% if node[:squid][:version] < 3 -%>
89 acl all src all
90 acl manager proto cache_object
91 acl localhost src 127.0.0.1/32
92 acl to_localhost dst 127.0.0.0/8
93 <% end -%>
94 acl SSL_ports port 443
95 acl Safe_ports port 80          # http
96 acl Safe_ports port 21          # ftp
97 acl Safe_ports port 443         # https
98 acl Safe_ports port 70          # gopher
99 acl Safe_ports port 210         # wais
100 acl Safe_ports port 1025-65535  # unregistered ports
101 acl Safe_ports port 280         # http-mgmt
102 acl Safe_ports port 488         # gss-http
103 acl Safe_ports port 591         # filemaker
104 acl Safe_ports port 777         # multiling http
105 acl CONNECT method CONNECT
106 http_access allow manager localhost
107
108 http_access allow manager
109
110 http_access deny manager
111 http_access deny !Safe_ports
112 http_access deny CONNECT !SSL_ports
113 #----------------------------------
114
115 acl purge_hosts src 127.0.0.0/8
116 acl PURGE method purge
117 http_access allow purge purge_hosts
118 http_access deny purge
119
120 forwarded_for on
121 follow_x_forwarded_for allow localhost
122
123 <% if node[:squid][:version] < 3 -%>
124 logformat openstreetmap %ts.%03tu %tr %>a %Ss/%03Hs %<st %rm %rp %Sh/%<A %mt "%{Referer}>h" "%{User-Agent}>h"
125 access_log <%= node[:squid][:access_log] %>
126 <% else -%>
127 logformat openstreetmap %ts.%03tu %tr %>a %Ss/%03>Hs %<st %rm %>rp %Sh/%<A %mt "%{Referer}>h" "%{User-Agent}>h"
128 access_log daemon:<%= node[:squid][:access_log] %>
129 <% end -%>
130 cache_log /var/log/squid/cache.log
131 cache_store_log none
132 buffered_logs on
133 client_db off
134 strip_query_terms off
135 <% if node[:squid][:version] > 2 -%>
136 # Work around bug in squid 3 that causes log_fqdn to be
137 # turned on by some of the (unused by us) default formats:
138 # http://lists.squid-cache.org/pipermail/squid-users/2016-February/thread.html#8999
139 url_rewrite_extras "%>a %un %>rm myip=%la myport=%lp"
140 store_id_extras "%>a %un %>rm myip=%la myport=%lp"
141 <% end -%>
142
143 digest_generation on
144
145 refresh_pattern .               0       50%     8640
146
147 #ZERO required for logrotate to work properly
148 logfile_rotate 0
149
150 <% Dir.glob("/etc/squid/squid.conf.d/*.conf") do |file| -%>
151 <%= File.read(file) %>
152 <% end -%>
153
154 #MUST BE LAST ACL
155 #--------------
156 http_access deny all
157 htcp_access deny all
158 icp_access deny all
159 #--------------
160