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