]> git.ipfire.org Git - thirdparty/squid.git/blob - src/cf.data.pre
The first local syslog facility is local0, not local9 (qwerty keyboard error)
[thirdparty/squid.git] / src / cf.data.pre
1
2 #
3 # $Id: cf.data.pre,v 1.457 2007/08/21 23:59:42 hno Exp $
4 #
5 # SQUID Web Proxy Cache http://www.squid-cache.org/
6 # ----------------------------------------------------------
7 #
8 # Squid is the result of efforts by numerous individuals from
9 # the Internet community; see the CONTRIBUTORS file for full
10 # details. Many organizations have provided support for Squid's
11 # development; see the SPONSORS file for full details. Squid is
12 # Copyrighted (C) 2000 by the Regents of the University of
13 # California; see the COPYRIGHT file for full details. Squid
14 # incorporates software developed and/or copyrighted by other
15 # sources; see the CREDITS file for full details.
16 #
17 # This program is free software; you can redistribute it and/or modify
18 # it under the terms of the GNU General Public License as published by
19 # the Free Software Foundation; either version 2 of the License, or
20 # (at your option) any later version.
21 #
22 # This program is distributed in the hope that it will be useful,
23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 # GNU General Public License for more details.
26 #
27 # You should have received a copy of the GNU General Public License
28 # along with this program; if not, write to the Free Software
29 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
30 #
31
32 COMMENT_START
33 WELCOME TO SQUID @VERSION@
34 ----------------------------
35
36 This is the default Squid configuration file. You may wish
37 to look at the Squid home page (http://www.squid-cache.org/)
38 for the FAQ and other documentation.
39
40 The default Squid config file shows what the defaults for
41 various options happen to be. If you don't need to change the
42 default, you shouldn't uncomment the line. Doing so may cause
43 run-time problems. In some cases "none" refers to no default
44 setting at all, while in other cases it refers to a valid
45 option - the comments for that keyword indicate if this is the
46 case.
47
48 COMMENT_END
49
50 COMMENT_START
51 NETWORK OPTIONS
52 -----------------------------------------------------------------------------
53 COMMENT_END
54
55 NAME: http_port ascii_port
56 TYPE: http_port_list
57 DEFAULT: none
58 LOC: Config.Sockaddr.http
59 DOC_START
60 Usage: port [options]
61 hostname:port [options]
62 1.2.3.4:port [options]
63
64 The socket addresses where Squid will listen for HTTP client
65 requests. You may specify multiple socket addresses.
66 There are three forms: port alone, hostname with port, and
67 IP address with port. If you specify a hostname or IP
68 address, Squid binds the socket to that specific
69 address. This replaces the old 'tcp_incoming_address'
70 option. Most likely, you do not need to bind to a specific
71 address, so you can use the port number alone.
72
73 If you are running Squid in accelerator mode, you
74 probably want to listen on port 80 also, or instead.
75
76 The -a command line option may be used to specify additional
77 port(s) where Squid listens for proxy request. Such ports will
78 be plain proxy ports with no options.
79
80 You may specify multiple socket addresses on multiple lines.
81
82 Options:
83
84 transparent Support for transparent interception of
85 outgoing requests without browser settings.
86
87 tproxy Support Linux TPROXY for spoofing outgoing
88 connections using the client IP address.
89
90 accel Accelerator mode. Also needs at least one of
91 vhost / vport / defaultsite.
92
93 defaultsite=domainname
94 What to use for the Host: header if it is not present
95 in a request. Determines what site (not origin server)
96 accelerators should consider the default.
97 Implies accel.
98
99 vhost Accelerator mode using Host header for virtual
100 domain support. Implies accel.
101
102 vport Accelerator with IP based virtual host support.
103 Implies accel.
104
105 vport=NN As above, but uses specified port number rather
106 than the http_port number. Implies accel.
107
108 protocol= Protocol to reconstruct accelerated requests with.
109 Defaults to http.
110
111 disable-pmtu-discovery=
112 Control Path-MTU discovery usage:
113 off lets OS decide on what to do (default).
114 transparent disable PMTU discovery when transparent
115 support is enabled.
116 always disable always PMTU discovery.
117
118 In many setups of transparently intercepting proxies
119 Path-MTU discovery can not work on traffic towards the
120 clients. This is the case when the intercepting device
121 does not fully track connections and fails to forward
122 ICMP must fragment messages to the cache server. If you
123 have such setup and experience that certain clients
124 sporadically hang or never complete requests set
125 disable-pmtu-discovery option to 'transparent'.
126
127 If you run Squid on a dual-homed machine with an internal
128 and an external interface we recommend you to specify the
129 internal address:port in http_port. This way Squid will only be
130 visible on the internal address.
131
132 NOCOMMENT_START
133 # Squid normally listens to port 3128
134 http_port @DEFAULT_HTTP_PORT@
135 NOCOMMENT_END
136 DOC_END
137
138 NAME: https_port
139 IFDEF: USE_SSL
140 TYPE: https_port_list
141 DEFAULT: none
142 LOC: Config.Sockaddr.https
143 DOC_START
144 Usage: [ip:]port cert=certificate.pem [key=key.pem] [options...]
145
146 The socket address where Squid will listen for HTTPS client
147 requests.
148
149 This is really only useful for situations where you are running
150 squid in accelerator mode and you want to do the SSL work at the
151 accelerator level.
152
153 You may specify multiple socket addresses on multiple lines,
154 each with their own SSL certificate and/or options.
155
156 Options:
157
158 accel Accelerator mode. Also needs at least one of
159 defaultsite or vhost.
160
161 defaultsite= The name of the https site presented on
162 this port. Implies accel.
163
164 vhost Accelerator mode using Host header for virtual
165 domain support. Requires a wildcard certificate
166 or other certificate valid for more than one domain.
167 Implies accel.
168
169 protocol= Protocol to reconstruct accelerated requests with.
170 Defaults to https.
171
172 cert= Path to SSL certificate (PEM format).
173
174 key= Path to SSL private key file (PEM format)
175 if not specified, the certificate file is
176 assumed to be a combined certificate and
177 key file.
178
179 version= The version of SSL/TLS supported
180 1 automatic (default)
181 2 SSLv2 only
182 3 SSLv3 only
183 4 TLSv1 only
184
185 cipher= Colon separated list of supported ciphers.
186
187 options= Various SSL engine options. The most important
188 being:
189 NO_SSLv2 Disallow the use of SSLv2
190 NO_SSLv3 Disallow the use of SSLv3
191 NO_TLSv1 Disallow the use of TLSv1
192 SINGLE_DH_USE Always create a new key when using
193 temporary/ephemeral DH key exchanges
194 See src/ssl_support.c or OpenSSL SSL_CTX_set_options
195 documentation for a complete list of options.
196
197 clientca= File containing the list of CAs to use when
198 requesting a client certificate.
199
200 cafile= File containing additional CA certificates to
201 use when verifying client certificates. If unset
202 clientca will be used.
203
204 capath= Directory containing additional CA certificates
205 and CRL lists to use when verifying client certificates.
206
207 crlfile= File of additional CRL lists to use when verifying
208 the client certificate, in addition to CRLs stored in
209 the capath. Implies VERIFY_CRL flag below.
210
211 dhparams= File containing DH parameters for temporary/ephemeral
212 DH key exchanges.
213
214 sslflags= Various flags modifying the use of SSL:
215 DELAYED_AUTH
216 Don't request client certificates
217 immediately, but wait until acl processing
218 requires a certificate (not yet implemented).
219 NO_DEFAULT_CA
220 Don't use the default CA lists built in
221 to OpenSSL.
222 NO_SESSION_REUSE
223 Don't allow for session reuse. Each connection
224 will result in a new SSL session.
225 VERIFY_CRL
226 Verify CRL lists when accepting client
227 certificates.
228 VERIFY_CRL_ALL
229 Verify CRL lists for all certificates in the
230 client certificate chain.
231
232 sslcontext= SSL session ID context identifier.
233
234 vport Accelerator with IP based virtual host support.
235
236 vport=NN As above, but uses specified port number rather
237 than the https_port number. Implies accel.
238
239 DOC_END
240
241 COMMENT_START
242 SSL OPTIONS
243 -----------------------------------------------------------------------------
244 COMMENT_END
245
246 NAME: ssl_unclean_shutdown
247 IFDEF: USE_SSL
248 TYPE: onoff
249 DEFAULT: off
250 LOC: Config.SSL.unclean_shutdown
251 DOC_START
252 Some browsers (especially MSIE) bugs out on SSL shutdown
253 messages.
254 DOC_END
255
256 NAME: ssl_engine
257 IFDEF: USE_SSL
258 TYPE: string
259 LOC: Config.SSL.ssl_engine
260 DEFAULT: none
261 DOC_START
262 The OpenSSL engine to use. You will need to set this if you
263 would like to use hardware SSL acceleration for example.
264 DOC_END
265
266 NAME: sslproxy_client_certificate
267 IFDEF: USE_SSL
268 DEFAULT: none
269 LOC: Config.ssl_client.cert
270 TYPE: string
271 DOC_START
272 Client SSL Certificate to use when proxying https:// URLs
273 DOC_END
274
275 NAME: sslproxy_client_key
276 IFDEF: USE_SSL
277 DEFAULT: none
278 LOC: Config.ssl_client.key
279 TYPE: string
280 DOC_START
281 Client SSL Key to use when proxying https:// URLs
282 DOC_END
283
284 NAME: sslproxy_version
285 IFDEF: USE_SSL
286 DEFAULT: 1
287 LOC: Config.ssl_client.version
288 TYPE: int
289 DOC_START
290 SSL version level to use when proxying https:// URLs
291 DOC_END
292
293 NAME: sslproxy_options
294 IFDEF: USE_SSL
295 DEFAULT: none
296 LOC: Config.ssl_client.options
297 TYPE: string
298 DOC_START
299 SSL engine options to use when proxying https:// URLs
300 DOC_END
301
302 NAME: sslproxy_cipher
303 IFDEF: USE_SSL
304 DEFAULT: none
305 LOC: Config.ssl_client.cipher
306 TYPE: string
307 DOC_START
308 SSL cipher list to use when proxying https:// URLs
309 DOC_END
310
311 NAME: sslproxy_cafile
312 IFDEF: USE_SSL
313 DEFAULT: none
314 LOC: Config.ssl_client.cafile
315 TYPE: string
316 DOC_START
317 file containing CA certificates to use when verifying server
318 certificates while proxying https:// URLs
319 DOC_END
320
321 NAME: sslproxy_capath
322 IFDEF: USE_SSL
323 DEFAULT: none
324 LOC: Config.ssl_client.capath
325 TYPE: string
326 DOC_START
327 directory containing CA certificates to use when verifying
328 server certificates while proxying https:// URLs
329 DOC_END
330
331 NAME: sslproxy_flags
332 IFDEF: USE_SSL
333 DEFAULT: none
334 LOC: Config.ssl_client.flags
335 TYPE: string
336 DOC_START
337 Various flags modifying the use of SSL while proxying https:// URLs:
338 DONT_VERIFY_PEER Accept certificates even if they fail to
339 verify.
340 NO_DEFAULT_CA Don't use the default CA list built in
341 to OpenSSL.
342 DOC_END
343
344 NAME: sslpassword_program
345 IFDEF: USE_SSL
346 DEFAULT: none
347 LOC: Config.Program.ssl_password
348 TYPE: string
349 DOC_START
350 Specify a program used for entering SSL key passphrases
351 when using encrypted SSL certificate keys. If not specified
352 keys must either be unencrypted, or Squid started with the -N
353 option to allow it to query interactively for the passphrase.
354 DOC_END
355
356 COMMENT_START
357 OPTIONS WHICH AFFECT THE NEIGHBOR SELECTION ALGORITHM
358 -----------------------------------------------------------------------------
359 COMMENT_END
360
361 NAME: cache_peer
362 TYPE: peer
363 DEFAULT: none
364 LOC: Config.peers
365 DOC_START
366 To specify other caches in a hierarchy, use the format:
367
368 cache_peer hostname type http-port icp-port [options]
369
370 For example,
371
372 # proxy icp
373 # hostname type port port options
374 # -------------------- -------- ----- ----- -----------
375 cache_peer parent.foo.net parent 3128 3130 proxy-only default
376 cache_peer sib1.foo.net sibling 3128 3130 proxy-only
377 cache_peer sib2.foo.net sibling 3128 3130 proxy-only
378
379 type: either 'parent', 'sibling', or 'multicast'.
380
381 proxy-port: The port number where the cache listens for proxy
382 requests.
383
384 icp-port: Used for querying neighbor caches about
385 objects. To have a non-ICP neighbor
386 specify '7' for the ICP port and make sure the
387 neighbor machine has the UDP echo port
388 enabled in its /etc/inetd.conf file.
389 NOTE: Also requires icp_port option enabled to send/receive
390 requests via this method.
391
392 options: proxy-only
393 weight=n
394 basetime=n
395 ttl=n
396 no-query
397 background-ping
398 default
399 round-robin
400 weighted-round-robin
401 carp
402 multicast-responder
403 closest-only
404 no-digest
405 no-netdb-exchange
406 no-delay
407 login=user:password | PASS | *:password
408 connect-timeout=nn
409 digest-url=url
410 allow-miss
411 max-conn=n
412 htcp
413 htcp-oldsquid
414 originserver
415 name=xxx
416 forceddomain=name
417 ssl
418 sslcert=/path/to/ssl/certificate
419 sslkey=/path/to/ssl/key
420 sslversion=1|2|3|4
421 sslcipher=...
422 ssloptions=...
423 front-end-https[=on|auto]
424
425 use 'proxy-only' to specify objects fetched
426 from this cache should not be saved locally.
427
428 use 'weight=n' to affect the selection of a peer
429 during any weighted peer-selection mechanisms.
430 The weight must be an integer; default is 1,
431 larger weights are favored more.
432 This option does not affect parent selection if a peering
433 protocol is not in use.
434
435 use 'basetime=n' to specify a base amount to
436 be subtracted from round trip times of parents.
437 It is subtracted before division by weight in calculating
438 which parent to fectch from. If the rtt is less than the
439 base time the rtt is set to a minimal value.
440
441 use 'ttl=n' to specify a IP multicast TTL to use
442 when sending an ICP queries to this address.
443 Only useful when sending to a multicast group.
444 Because we don't accept ICP replies from random
445 hosts, you must configure other group members as
446 peers with the 'multicast-responder' option below.
447
448 use 'no-query' to NOT send ICP queries to this
449 neighbor.
450
451 use 'background-ping' to only send ICP queries to this
452 neighbor infrequently. This is used to keep the neighbor
453 round trip time updated and is usually used in
454 conjunction with weighted-round-robin.
455
456 use 'default' if this is a parent cache which can
457 be used as a "last-resort" if a peer cannot be located
458 by any of the peer-selection mechanisms.
459 If specified more than once, only the first is used.
460
461 use 'round-robin' to define a set of parents which
462 should be used in a round-robin fashion in the
463 absence of any ICP queries.
464
465 use 'weighted-round-robin' to define a set of parents
466 which should be used in a round-robin fashion with the
467 frequency of each parent being based on the round trip
468 time. Closer parents are used more often.
469 Usually used for background-ping parents.
470
471 use 'carp' to define a set of parents which should
472 be used as a CARP array. The requests will be
473 distributed among the parents based on the CARP load
474 balancing hash function based on their weigth.
475
476 'multicast-responder' indicates the named peer
477 is a member of a multicast group. ICP queries will
478 not be sent directly to the peer, but ICP replies
479 will be accepted from it.
480
481 'closest-only' indicates that, for ICP_OP_MISS
482 replies, we'll only forward CLOSEST_PARENT_MISSes
483 and never FIRST_PARENT_MISSes.
484
485 use 'no-digest' to NOT request cache digests from
486 this neighbor.
487
488 'no-netdb-exchange' disables requesting ICMP
489 RTT database (NetDB) from the neighbor.
490
491 use 'no-delay' to prevent access to this neighbor
492 from influencing the delay pools.
493
494 use 'login=user:password' if this is a personal/workgroup
495 proxy and your parent requires proxy authentication.
496 Note: The string can include URL escapes (i.e. %20 for
497 spaces). This also means % must be written as %%.
498
499 use 'login=PASS' if users must authenticate against
500 the upstream proxy or in the case of a reverse proxy
501 configuration, the origin web server. This will pass
502 the users credentials as they are to the peer.
503 This only works for the Basic HTTP authentication scheme.
504 Note: To combine this with proxy_auth both proxies must
505 share the same user database as HTTP only allows for
506 a single login (one for proxy, one for origin server).
507 Also be warned this will expose your users proxy
508 password to the peer. USE WITH CAUTION
509
510 use 'login=*:password' to pass the username to the
511 upstream cache, but with a fixed password. This is meant
512 to be used when the peer is in another administrative
513 domain, but it is still needed to identify each user.
514 The star can optionally be followed by some extra
515 information which is added to the username. This can
516 be used to identify this proxy to the peer, similar to
517 the login=username:password option above.
518
519 use 'connect-timeout=nn' to specify a peer
520 specific connect timeout (also see the
521 peer_connect_timeout directive)
522
523 use 'digest-url=url' to tell Squid to fetch the cache
524 digest (if digests are enabled) for this host from
525 the specified URL rather than the Squid default
526 location.
527
528 use 'allow-miss' to disable Squid's use of only-if-cached
529 when forwarding requests to siblings. This is primarily
530 useful when icp_hit_stale is used by the sibling. To
531 extensive use of this option may result in forwarding
532 loops, and you should avoid having two-way peerings
533 with this option. (for example to deny peer usage on
534 requests from peer by denying cache_peer_access if the
535 source is a peer)
536
537 use 'max-conn=n' to limit the amount of connections Squid
538 may open to this peer.
539
540 use 'htcp' to send HTCP, instead of ICP, queries
541 to the neighbor. You probably also want to
542 set the "icp port" to 4827 instead of 3130.
543
544 use 'htcp-oldsquid' to send HTCP to old Squid versions
545
546 'originserver' causes this parent peer to be contacted as
547 a origin server. Meant to be used in accelerator setups.
548
549 use 'name=xxx' if you have multiple peers on the same
550 host but different ports. This name can be used to
551 differentiate the peers in cache_peer_access and similar
552 directives.
553
554 use 'forceddomain=name' to forcibly set the Host header
555 of requests forwarded to this peer. Useful in accelerator
556 setups where the server (peer) expects a certain domain
557 name and using redirectors to feed this domain name
558 is not feasible.
559
560 use 'ssl' to indicate connections to this peer should
561 be SSL/TLS encrypted.
562
563 use 'sslcert=/path/to/ssl/certificate' to specify a client
564 SSL certificate to use when connecting to this peer.
565
566 use 'sslkey=/path/to/ssl/key' to specify the private SSL
567 key corresponding to sslcert above. If 'sslkey' is not
568 specified 'sslcert' is assumed to reference a
569 combined file containing both the certificate and the key.
570
571 use sslversion=1|2|3|4 to specify the SSL version to use
572 when connecting to this peer
573 1 = automatic (default)
574 2 = SSL v2 only
575 3 = SSL v3 only
576 4 = TLS v1 only
577
578 use sslcipher=... to specify the list of valid SSL ciphers
579 to use when connecting to this peer.
580
581 use ssloptions=... to specify various SSL engine options:
582 NO_SSLv2 Disallow the use of SSLv2
583 NO_SSLv3 Disallow the use of SSLv3
584 NO_TLSv1 Disallow the use of TLSv1
585 See src/ssl_support.c or the OpenSSL documentation for
586 a more complete list.
587
588 use sslcafile=... to specify a file containing
589 additional CA certificates to use when verifying the
590 peer certificate.
591
592 use sslcapath=... to specify a directory containing
593 additional CA certificates to use when verifying the
594 peer certificate.
595
596 use sslcrlfile=... to specify a certificate revocation
597 list file to use when verifying the peer certificate.
598
599 use sslflags=... to specify various flags modifying the
600 SSL implementation:
601 DONT_VERIFY_PEER
602 Accept certificates even if they fail to
603 verify.
604 NO_DEFAULT_CA
605 Don't use the default CA list built in
606 to OpenSSL.
607 DONT_VERIFY_DOMAIN
608 Don't verify the peer certificate
609 matches the server name
610
611 use ssldomain= to specify the peer name as advertised
612 in it's certificate. Used for verifying the correctness
613 of the received peer certificate. If not specified the
614 peer hostname will be used.
615
616 use front-end-https to enable the "Front-End-Https: On"
617 header needed when using Squid as a SSL frontend in front
618 of Microsoft OWA. See MS KB document Q307347 for details
619 on this header. If set to auto the header will
620 only be added if the request is forwarded as a https://
621 URL.
622 DOC_END
623
624 NAME: cache_peer_domain cache_host_domain
625 TYPE: hostdomain
626 DEFAULT: none
627 LOC: none
628 DOC_START
629 Use to limit the domains for which a neighbor cache will be
630 queried. Usage:
631
632 cache_peer_domain cache-host domain [domain ...]
633 cache_peer_domain cache-host !domain
634
635 For example, specifying
636
637 cache_peer_domain parent.foo.net .edu
638
639 has the effect such that UDP query packets are sent to
640 'bigserver' only when the requested object exists on a
641 server in the .edu domain. Prefixing the domainname
642 with '!' means the cache will be queried for objects
643 NOT in that domain.
644
645 NOTE: * Any number of domains may be given for a cache-host,
646 either on the same or separate lines.
647 * When multiple domains are given for a particular
648 cache-host, the first matched domain is applied.
649 * Cache hosts with no domain restrictions are queried
650 for all requests.
651 * There are no defaults.
652 * There is also a 'cache_peer_access' tag in the ACL
653 section.
654 DOC_END
655
656 NAME: neighbor_type_domain
657 TYPE: hostdomaintype
658 DEFAULT: none
659 LOC: none
660 DOC_START
661 usage: neighbor_type_domain neighbor parent|sibling domain domain ...
662
663 Modifying the neighbor type for specific domains is now
664 possible. You can treat some domains differently than the the
665 default neighbor type specified on the 'cache_peer' line.
666 Normally it should only be necessary to list domains which
667 should be treated differently because the default neighbor type
668 applies for hostnames which do not match domains listed here.
669
670 EXAMPLE:
671 cache_peer parent cache.foo.org 3128 3130
672 neighbor_type_domain cache.foo.org sibling .com .net
673 neighbor_type_domain cache.foo.org sibling .au .de
674 DOC_END
675
676 NAME: dead_peer_timeout
677 COMMENT: (seconds)
678 DEFAULT: 10 seconds
679 TYPE: time_t
680 LOC: Config.Timeout.deadPeer
681 DOC_START
682 This controls how long Squid waits to declare a peer cache
683 as "dead." If there are no ICP replies received in this
684 amount of time, Squid will declare the peer dead and not
685 expect to receive any further ICP replies. However, it
686 continues to send ICP queries, and will mark the peer as
687 alive upon receipt of the first subsequent ICP reply.
688
689 This timeout also affects when Squid expects to receive ICP
690 replies from peers. If more than 'dead_peer' seconds have
691 passed since the last ICP reply was received, Squid will not
692 expect to receive an ICP reply on the next query. Thus, if
693 your time between requests is greater than this timeout, you
694 will see a lot of requests sent DIRECT to origin servers
695 instead of to your parents.
696 DOC_END
697
698 NAME: hierarchy_stoplist
699 TYPE: wordlist
700 DEFAULT: none
701 LOC: Config.hierarchy_stoplist
702 DOC_START
703 A list of words which, if found in a URL, cause the object to
704 be handled directly by this cache. In other words, use this
705 to not query neighbor caches for certain objects. You may
706 list this option multiple times.
707 Note: never_direct overrides this option.
708 NOCOMMENT_START
709 #We recommend you to use at least the following line.
710 hierarchy_stoplist cgi-bin ?
711 NOCOMMENT_END
712 DOC_END
713
714 NAME: cache no_cache
715 TYPE: acl_access
716 DEFAULT: none
717 LOC: Config.accessList.noCache
718 DOC_START
719 A list of ACL elements which, if matched, cause the request to
720 not be satisfied from the cache and the reply to not be cached.
721 In other words, use this to force certain objects to never be cached.
722
723 You must use the word 'DENY' to indicate the ACL names which should
724 NOT be cached.
725
726 Default is to allow all to be cached
727 NOCOMMENT_START
728 #We recommend you to use the following two lines.
729 acl QUERY urlpath_regex cgi-bin \?
730 cache deny QUERY
731 NOCOMMENT_END
732 DOC_END
733
734 COMMENT_START
735 MEMORY CACHE OPTIONS
736 -----------------------------------------------------------------------------
737 COMMENT_END
738
739 NAME: cache_mem
740 COMMENT: (bytes)
741 TYPE: b_size_t
742 DEFAULT: 8 MB
743 LOC: Config.memMaxSize
744 DOC_START
745 NOTE: THIS PARAMETER DOES NOT SPECIFY THE MAXIMUM PROCESS SIZE.
746 IT ONLY PLACES A LIMIT ON HOW MUCH ADDITIONAL MEMORY SQUID WILL
747 USE AS A MEMORY CACHE OF OBJECTS. SQUID USES MEMORY FOR OTHER
748 THINGS AS WELL. SEE THE SQUID FAQ SECTION 8 FOR DETAILS.
749
750 'cache_mem' specifies the ideal amount of memory to be used
751 for:
752 * In-Transit objects
753 * Hot Objects
754 * Negative-Cached objects
755
756 Data for these objects are stored in 4 KB blocks. This
757 parameter specifies the ideal upper limit on the total size of
758 4 KB blocks allocated. In-Transit objects take the highest
759 priority.
760
761 In-transit objects have priority over the others. When
762 additional space is needed for incoming data, negative-cached
763 and hot objects will be released. In other words, the
764 negative-cached and hot objects will fill up any unused space
765 not needed for in-transit objects.
766
767 If circumstances require, this limit will be exceeded.
768 Specifically, if your incoming request rate requires more than
769 'cache_mem' of memory to hold in-transit objects, Squid will
770 exceed this limit to satisfy the new requests. When the load
771 decreases, blocks will be freed until the high-water mark is
772 reached. Thereafter, blocks will be used to store hot
773 objects.
774 DOC_END
775
776 NAME: maximum_object_size_in_memory
777 COMMENT: (bytes)
778 TYPE: b_size_t
779 DEFAULT: 8 KB
780 LOC: Config.Store.maxInMemObjSize
781 DOC_START
782 Objects greater than this size will not be attempted to kept in
783 the memory cache. This should be set high enough to keep objects
784 accessed frequently in memory to improve performance whilst low
785 enough to keep larger objects from hoarding cache_mem .
786 DOC_END
787
788 NAME: memory_replacement_policy
789 TYPE: removalpolicy
790 LOC: Config.memPolicy
791 DEFAULT: lru
792 DOC_START
793 The memory replacement policy parameter determines which
794 objects are purged from memory when memory space is needed.
795
796 See cache_replacement_policy for details.
797 DOC_END
798
799 COMMENT_START
800 DISK CACHE OPTIONS
801 -----------------------------------------------------------------------------
802 COMMENT_END
803
804 NAME: cache_dir
805 TYPE: cachedir
806 DEFAULT: none
807 DEFAULT_IF_NONE: ufs @DEFAULT_SWAP_DIR@ 100 16 256
808 LOC: Config.cacheSwap
809 DOC_START
810 Usage:
811
812 cache_dir Type Directory-Name Fs-specific-data [options]
813
814 You can specify multiple cache_dir lines to spread the
815 cache among different disk partitions.
816
817 Type specifies the kind of storage system to use. Only "ufs"
818 is built by default. To enable any of the other storage systems
819 see the --enable-storeio configure option.
820
821 'Directory' is a top-level directory where cache swap
822 files will be stored. If you want to use an entire disk
823 for caching, this can be the mount-point directory.
824 The directory must exist and be writable by the Squid
825 process. Squid will NOT create this directory for you.
826
827 The ufs store type:
828
829 "ufs" is the old well-known Squid storage format that has always
830 been there.
831
832 cache_dir ufs Directory-Name Mbytes L1 L2 [options]
833
834 'Mbytes' is the amount of disk space (MB) to use under this
835 directory. The default is 100 MB. Change this to suit your
836 configuration. Do NOT put the size of your disk drive here.
837 Instead, if you want Squid to use the entire disk drive,
838 subtract 20% and use that value.
839
840 'Level-1' is the number of first-level subdirectories which
841 will be created under the 'Directory'. The default is 16.
842
843 'Level-2' is the number of second-level subdirectories which
844 will be created under each first-level directory. The default
845 is 256.
846
847 The aufs store type:
848
849 "aufs" uses the same storage format as "ufs", utilizing
850 POSIX-threads to avoid blocking the main Squid process on
851 disk-I/O. This was formerly known in Squid as async-io.
852
853 cache_dir aufs Directory-Name Mbytes L1 L2 [options]
854
855 see argument descriptions under ufs above
856
857 The diskd store type:
858
859 "diskd" uses the same storage format as "ufs", utilizing a
860 separate process to avoid blocking the main Squid process on
861 disk-I/O.
862
863 cache_dir diskd Directory-Name Mbytes L1 L2 [options] [Q1=n] [Q2=n]
864
865 see argument descriptions under ufs above
866
867 Q1 specifies the number of unacknowledged I/O requests when Squid
868 stops opening new files. If this many messages are in the queues,
869 Squid won't open new files. Default is 64
870
871 Q2 specifies the number of unacknowledged messages when Squid
872 starts blocking. If this many messages are in the queues,
873 Squid blocks until it receives some replies. Default is 72
874
875 When Q1 < Q2 (the default), the cache directory is optimized
876 for lower response time at the expense of a decrease in hit
877 ratio. If Q1 > Q2, the cache directory is optimized for
878 higher hit ratio at the expense of an increase in response
879 time.
880
881 The coss store type:
882
883 block-size=n defines the "block size" for COSS cache_dir's.
884 Squid uses file numbers as block numbers. Since file numbers
885 are limited to 24 bits, the block size determines the maximum
886 size of the COSS partition. The default is 512 bytes, which
887 leads to a maximum cache_dir size of 512<<24, or 8 GB. Note
888 you should not change the coss block size after Squid
889 has written some objects to the cache_dir.
890
891 The coss file store has changed from 2.5. Now it uses a file
892 called 'stripe' in the directory names in the config - and
893 this will be created by squid -z.
894
895 The null store type:
896
897 no options are allowed or required
898
899 Common options:
900
901 no-store, no new objects should be stored to this cache_dir
902
903 max-size=n, refers to the max object size this storedir supports.
904 It is used to initially choose the storedir to dump the object.
905 Note: To make optimal use of the max-size limits you should order
906 the cache_dir lines with the smallest max-size value first and the
907 ones with no max-size specification last.
908
909 Note for coss, max-size must be less than COSS_MEMBUF_SZ,
910 which can be changed with the --with-coss-membuf-size=N configure
911 option.
912 DOC_END
913
914 NAME: store_dir_select_algorithm
915 TYPE: string
916 LOC: Config.store_dir_select_algorithm
917 DEFAULT: least-load
918 DOC_START
919 Set this to 'round-robin' as an alternative.
920 DOC_END
921
922 NAME: max_open_disk_fds
923 TYPE: int
924 LOC: Config.max_open_disk_fds
925 DEFAULT: 0
926 DOC_START
927 To avoid having disk as the I/O bottleneck Squid can optionally
928 bypass the on-disk cache if more than this amount of disk file
929 descriptors are open.
930
931 A value of 0 indicates no limit.
932 DOC_END
933
934 NAME: cache_replacement_policy
935 TYPE: removalpolicy
936 LOC: Config.replPolicy
937 DEFAULT: lru
938 DOC_START
939 The cache replacement policy parameter determines which
940 objects are evicted (replaced) when disk space is needed.
941
942 lru : Squid's original list based LRU policy
943 heap GDSF : Greedy-Dual Size Frequency
944 heap LFUDA: Least Frequently Used with Dynamic Aging
945 heap LRU : LRU policy implemented using a heap
946
947 Applies to any cache_dir lines listed below this.
948
949 The LRU policies keeps recently referenced objects.
950
951 The heap GDSF policy optimizes object hit rate by keeping smaller
952 popular objects in cache so it has a better chance of getting a
953 hit. It achieves a lower byte hit rate than LFUDA though since
954 it evicts larger (possibly popular) objects.
955
956 The heap LFUDA policy keeps popular objects in cache regardless of
957 their size and thus optimizes byte hit rate at the expense of
958 hit rate since one large, popular object will prevent many
959 smaller, slightly less popular objects from being cached.
960
961 Both policies utilize a dynamic aging mechanism that prevents
962 cache pollution that can otherwise occur with frequency-based
963 replacement policies.
964
965 NOTE: if using the LFUDA replacement policy you should increase
966 the value of maximum_object_size above its default of 4096 KB to
967 to maximize the potential byte hit rate improvement of LFUDA.
968
969 For more information about the GDSF and LFUDA cache replacement
970 policies see http://www.hpl.hp.com/techreports/1999/HPL-1999-69.html
971 and http://fog.hpl.external.hp.com/techreports/98/HPL-98-173.html.
972 DOC_END
973
974 NAME: minimum_object_size
975 COMMENT: (bytes)
976 TYPE: b_int64_t
977 DEFAULT: 0 KB
978 LOC: Config.Store.minObjectSize
979 DOC_START
980 Objects smaller than this size will NOT be saved on disk. The
981 value is specified in kilobytes, and the default is 0 KB, which
982 means there is no minimum.
983 DOC_END
984
985 NAME: maximum_object_size
986 COMMENT: (bytes)
987 TYPE: b_int64_t
988 DEFAULT: 4096 KB
989 LOC: Config.Store.maxObjectSize
990 DOC_START
991 Objects larger than this size will NOT be saved on disk. The
992 value is specified in kilobytes, and the default is 4MB. If
993 you wish to get a high BYTES hit ratio, you should probably
994 increase this (one 32 MB object hit counts for 3200 10KB
995 hits). If you wish to increase speed more than your want to
996 save bandwidth you should leave this low.
997
998 NOTE: if using the LFUDA replacement policy you should increase
999 this value to maximize the byte hit rate improvement of LFUDA!
1000 See replacement_policy below for a discussion of this policy.
1001 DOC_END
1002
1003 NAME: cache_swap_low
1004 COMMENT: (percent, 0-100)
1005 TYPE: int
1006 DEFAULT: 90
1007 LOC: Config.Swap.lowWaterMark
1008 DOC_NONE
1009
1010 NAME: cache_swap_high
1011 COMMENT: (percent, 0-100)
1012 TYPE: int
1013 DEFAULT: 95
1014 LOC: Config.Swap.highWaterMark
1015 DOC_START
1016
1017 The low- and high-water marks for cache object replacement.
1018 Replacement begins when the swap (disk) usage is above the
1019 low-water mark and attempts to maintain utilization near the
1020 low-water mark. As swap utilization gets close to high-water
1021 mark object eviction becomes more aggressive. If utilization is
1022 close to the low-water mark less replacement is done each time.
1023
1024 Defaults are 90% and 95%. If you have a large cache, 5% could be
1025 hundreds of MB. If this is the case you may wish to set these
1026 numbers closer together.
1027 DOC_END
1028
1029 COMMENT_START
1030 LOGFILE OPTIONS
1031 -----------------------------------------------------------------------------
1032 COMMENT_END
1033
1034 NAME: logformat
1035 TYPE: logformat
1036 LOC: Config.Log.logformats
1037 DEFAULT: none
1038 DOC_START
1039 Usage:
1040
1041 logformat <name> <format specification>
1042
1043 Defines an access log format.
1044
1045 The <format specification> is a string with embedded % format codes
1046
1047 % format codes all follow the same basic structure where all but
1048 the formatcode is optional. Output strings are automatically escaped
1049 as required according to their context and the output format
1050 modifiers are usually not needed, but can be specified if an explicit
1051 output format is desired.
1052
1053 % ["|[|'|#] [-] [[0]width] [{argument}] formatcode
1054
1055 " output in quoted string format
1056 [ output in squid text log format as used by log_mime_hdrs
1057 # output in URL quoted format
1058 ' output as-is
1059
1060 - left aligned
1061 width field width. If starting with 0 the
1062 output is zero padded
1063 {arg} argument such as header name etc
1064
1065 Format codes:
1066
1067 >a Client source IP address
1068 >A Client FQDN
1069 >p Client source port
1070 <A Server IP address or peer name
1071 la Local IP address (http_port)
1072 lp Local port number (http_port)
1073 ts Seconds since epoch
1074 tu subsecond time (milliseconds)
1075 tl Local time. Optional strftime format argument
1076 default %d/%b/%Y:%H:%M:%S %z
1077 tg GMT time. Optional strftime format argument
1078 default %d/%b/%Y:%H:%M:%S %z
1079 tr Response time (milliseconds)
1080 >h Request header. Optional header name argument
1081 on the format header[:[separator]element]
1082 <h Reply header. Optional header name argument
1083 as for >h
1084 un User name
1085 ul User name from authentication
1086 ui User name from ident
1087 us User name from SSL
1088 ue User name from external acl helper
1089 Hs HTTP status code
1090 Ss Squid request status (TCP_MISS etc)
1091 Sh Squid hierarchy status (DEFAULT_PARENT etc)
1092 mt MIME content type
1093 rm Request method (GET/POST etc)
1094 ru Request URL
1095 rp Request URL-Path excluding hostname
1096 rv Request protocol version
1097 et Tag returned by external acl
1098 ea Log string returned by external acl
1099 <st Reply size including HTTP headers
1100 <sH Reply high offset sent
1101 <sS Upstream object size
1102 % a literal % character
1103
1104 logformat squid %ts.%03tu %6tr %>a %Ss/%03Hs %<st %rm %ru %un %Sh/%<A %mt
1105 logformat squidmime %ts.%03tu %6tr %>a %Ss/%03Hs %<st %rm %ru %un %Sh/%<A %mt [%>h] [%<h]
1106 logformat common %>a %ui %un [%tl] "%rm %ru HTTP/%rv" %Hs %<st %Ss:%Sh
1107 logformat combined %>a %ui %un [%tl] "%rm %ru HTTP/%rv" %Hs %<st "%{Referer}>h" "%{User-Agent}>h" %Ss:%Sh
1108 DOC_END
1109
1110 NAME: access_log cache_access_log
1111 TYPE: access_log
1112 LOC: Config.Log.accesslogs
1113 DEFAULT: none
1114 DOC_START
1115 These files log client request activities. Has a line every HTTP or
1116 ICP request. The format is:
1117 access_log <filepath> [<logformat name> [acl acl ...]]
1118 access_log none [acl acl ...]]
1119
1120 Will log to the specified file using the specified format (which
1121 must be defined in a logformat directive) those entries which match
1122 ALL the acl's specified (which must be defined in acl clauses).
1123 If no acl is specified, all requests will be logged to this file.
1124
1125 To disable logging of a request use the filepath "none", in which case
1126 a logformat name should not be specified.
1127
1128 To log the request via syslog specify a filepath of "syslog":
1129
1130 access_log syslog[:facility.priority] [format [acl1 [acl2 ....]]]
1131 where facility could be any of:
1132 authpriv, daemon, local0 .. local7 or user.
1133
1134 And priority could be any of:
1135 err, warning, notice, info, debug.
1136 NOCOMMENT_START
1137 access_log @DEFAULT_ACCESS_LOG@ squid
1138 NOCOMMENT_END
1139 DOC_END
1140
1141 NAME: cache_log
1142 TYPE: string
1143 DEFAULT: @DEFAULT_CACHE_LOG@
1144 LOC: Config.Log.log
1145 DOC_START
1146 Cache logging file. This is where general information about
1147 your cache's behavior goes. You can increase the amount of data
1148 logged to this file with the "debug_options" tag below.
1149 DOC_END
1150
1151 NAME: cache_store_log
1152 TYPE: string
1153 DEFAULT: @DEFAULT_STORE_LOG@
1154 LOC: Config.Log.store
1155 DOC_START
1156 Logs the activities of the storage manager. Shows which
1157 objects are ejected from the cache, and which objects are
1158 saved and for how long. To disable, enter "none". There are
1159 not really utilities to analyze this data, so you can safely
1160 disable it.
1161 DOC_END
1162
1163 NAME: cache_swap_state cache_swap_log
1164 TYPE: string
1165 LOC: Config.Log.swap
1166 DEFAULT: none
1167 DOC_START
1168 Location for the cache "swap.state" file. This index file holds
1169 the metadata of objects saved on disk. It is used to rebuild
1170 the cache during startup. Normally this file resides in each
1171 'cache_dir' directory, but you may specify an alternate
1172 pathname here. Note you must give a full filename, not just
1173 a directory. Since this is the index for the whole object
1174 list you CANNOT periodically rotate it!
1175
1176 If %s can be used in the file name it will be replaced with a
1177 a representation of the cache_dir name where each / is replaced
1178 with '.'. This is needed to allow adding/removing cache_dir
1179 lines when cache_swap_log is being used.
1180
1181 If have more than one 'cache_dir', and %s is not used in the name
1182 these swap logs will have names such as:
1183
1184 cache_swap_log.00
1185 cache_swap_log.01
1186 cache_swap_log.02
1187
1188 The numbered extension (which is added automatically)
1189 corresponds to the order of the 'cache_dir' lines in this
1190 configuration file. If you change the order of the 'cache_dir'
1191 lines in this file, these index files will NOT correspond to
1192 the correct 'cache_dir' entry (unless you manually rename
1193 them). We recommend you do NOT use this option. It is
1194 better to keep these index files in each 'cache_dir' directory.
1195 DOC_END
1196
1197 NAME: logfile_rotate
1198 TYPE: int
1199 DEFAULT: 10
1200 LOC: Config.Log.rotateNumber
1201 DOC_START
1202 Specifies the number of logfile rotations to make when you
1203 type 'squid -k rotate'. The default is 10, which will rotate
1204 with extensions 0 through 9. Setting logfile_rotate to 0 will
1205 disable the file name rotation, but the logfiles are still closed
1206 and re-opened. This will enable you to rename the logfiles
1207 yourself just before sending the rotate signal.
1208
1209 Note, the 'squid -k rotate' command normally sends a USR1
1210 signal to the running squid process. In certain situations
1211 (e.g. on Linux with Async I/O), USR1 is used for other
1212 purposes, so -k rotate uses another signal. It is best to get
1213 in the habit of using 'squid -k rotate' instead of 'kill -USR1
1214 <pid>'.
1215 DOC_END
1216
1217 NAME: emulate_httpd_log
1218 COMMENT: on|off
1219 TYPE: onoff
1220 DEFAULT: off
1221 LOC: Config.onoff.common_log
1222 DOC_START
1223 The Cache can emulate the log file format which many 'httpd'
1224 programs use. To disable/enable this emulation, set
1225 emulate_httpd_log to 'off' or 'on'. The default
1226 is to use the native log format since it includes useful
1227 information Squid-specific log analyzers use.
1228 DOC_END
1229
1230 NAME: log_ip_on_direct
1231 COMMENT: on|off
1232 TYPE: onoff
1233 DEFAULT: on
1234 LOC: Config.onoff.log_ip_on_direct
1235 DOC_START
1236 Log the destination IP address in the hierarchy log tag when going
1237 direct. Earlier Squid versions logged the hostname here. If you
1238 prefer the old way set this to off.
1239 DOC_END
1240
1241 NAME: mime_table
1242 TYPE: string
1243 DEFAULT: @DEFAULT_MIME_TABLE@
1244 LOC: Config.mimeTablePathname
1245 DOC_START
1246 Pathname to Squid's MIME table. You shouldn't need to change
1247 this, but the default file contains examples and formatting
1248 information if you do.
1249 DOC_END
1250
1251 NAME: log_mime_hdrs
1252 COMMENT: on|off
1253 TYPE: onoff
1254 LOC: Config.onoff.log_mime_hdrs
1255 DEFAULT: off
1256 DOC_START
1257 The Cache can record both the request and the response MIME
1258 headers for each HTTP transaction. The headers are encoded
1259 safely and will appear as two bracketed fields at the end of
1260 the access log (for either the native or httpd-emulated log
1261 formats). To enable this logging set log_mime_hdrs to 'on'.
1262 DOC_END
1263
1264 NAME: useragent_log
1265 TYPE: string
1266 LOC: Config.Log.useragent
1267 DEFAULT: none
1268 IFDEF: USE_USERAGENT_LOG
1269 DOC_START
1270 Squid will write the User-Agent field from HTTP requests
1271 to the filename specified here. By default useragent_log
1272 is disabled.
1273 DOC_END
1274
1275 NAME: referer_log referrer_log
1276 TYPE: string
1277 LOC: Config.Log.referer
1278 DEFAULT: none
1279 IFDEF: USE_REFERER_LOG
1280 DOC_START
1281 Squid will write the Referer field from HTTP requests to the
1282 filename specified here. By default referer_log is disabled.
1283 Note that "referer" is actually a misspelling of "referrer"
1284 however the misspelt version has been accepted into the HTTP RFCs
1285 and we accept both.
1286 DOC_END
1287
1288 NAME: pid_filename
1289 TYPE: string
1290 DEFAULT: @DEFAULT_PID_FILE@
1291 LOC: Config.pidFilename
1292 DOC_START
1293 A filename to write the process-id to. To disable, enter "none".
1294 DOC_END
1295
1296 NAME: debug_options
1297 TYPE: debug
1298 DEFAULT: ALL,1
1299 LOC: Config.debugOptions
1300 DOC_START
1301 Logging options are set as section,level where each source file
1302 is assigned a unique section. Lower levels result in less
1303 output, Full debugging (level 9) can result in a very large
1304 log file, so be careful. The magic word "ALL" sets debugging
1305 levels for all sections. We recommend normally running with
1306 "ALL,1".
1307 DOC_END
1308
1309 NAME: log_fqdn
1310 COMMENT: on|off
1311 TYPE: onoff
1312 DEFAULT: off
1313 LOC: Config.onoff.log_fqdn
1314 DOC_START
1315 Turn this on if you wish to log fully qualified domain names
1316 in the access.log. To do this Squid does a DNS lookup of all
1317 IP's connecting to it. This can (in some situations) increase
1318 latency, which makes your cache seem slower for interactive
1319 browsing.
1320 DOC_END
1321
1322 NAME: client_netmask
1323 TYPE: address
1324 LOC: Config.Addrs.client_netmask
1325 DEFAULT: 255.255.255.255
1326 DOC_START
1327 A netmask for client addresses in logfiles and cachemgr output.
1328 Change this to protect the privacy of your cache clients.
1329 A netmask of 255.255.255.0 will log all IP's in that range with
1330 the last digit set to '0'.
1331 DOC_END
1332
1333 NAME: forward_log
1334 IFDEF: WIP_FWD_LOG
1335 TYPE: string
1336 DEFAULT: none
1337 LOC: Config.Log.forward
1338 DOC_START
1339 Logs the server-side requests.
1340
1341 This is currently work in progress.
1342 DOC_END
1343
1344 NAME: strip_query_terms
1345 TYPE: onoff
1346 LOC: Config.onoff.strip_query_terms
1347 DEFAULT: on
1348 DOC_START
1349 By default, Squid strips query terms from requested URLs before
1350 logging. This protects your user's privacy.
1351 DOC_END
1352
1353 NAME: buffered_logs
1354 COMMENT: on|off
1355 TYPE: onoff
1356 DEFAULT: off
1357 LOC: Config.onoff.buffered_logs
1358 DOC_START
1359 cache.log log file is written with stdio functions, and as such
1360 it can be buffered or unbuffered. By default it will be unbuffered.
1361 Buffering it can speed up the writing slightly (though you are
1362 unlikely to need to worry unless you run with tons of debugging
1363 enabled in which case performance will suffer badly anyway..).
1364 DOC_END
1365
1366 COMMENT_START
1367 OPTIONS FOR EXTERNAL SUPPORT PROGRAMS
1368 -----------------------------------------------------------------------------
1369 COMMENT_END
1370
1371 NAME: ftp_user
1372 TYPE: string
1373 DEFAULT: Squid@
1374 LOC: Config.Ftp.anon_user
1375 DOC_START
1376 If you want the anonymous login password to be more informative
1377 (and enable the use of picky ftp servers), set this to something
1378 reasonable for your domain, like wwwuser@somewhere.net
1379
1380 The reason why this is domainless by default is the
1381 request can be made on the behalf of a user in any domain,
1382 depending on how the cache is used.
1383 Some ftp server also validate the email address is valid
1384 (for example perl.com).
1385 DOC_END
1386
1387 NAME: ftp_list_width
1388 TYPE: size_t
1389 DEFAULT: 32
1390 LOC: Config.Ftp.list_width
1391 DOC_START
1392 Sets the width of ftp listings. This should be set to fit in
1393 the width of a standard browser. Setting this too small
1394 can cut off long filenames when browsing ftp sites.
1395 DOC_END
1396
1397 NAME: ftp_passive
1398 TYPE: onoff
1399 DEFAULT: on
1400 LOC: Config.Ftp.passive
1401 DOC_START
1402 If your firewall does not allow Squid to use passive
1403 connections, turn off this option.
1404 DOC_END
1405
1406 NAME: ftp_sanitycheck
1407 TYPE: onoff
1408 DEFAULT: on
1409 LOC: Config.Ftp.sanitycheck
1410 DOC_START
1411 For security and data integrity reasons Squid by default performs
1412 sanity checks of the addresses of FTP data connections ensure the
1413 data connection is to the requested server. If you need to allow
1414 FTP connections to servers using another IP address for the data
1415 connection turn this off.
1416 DOC_END
1417
1418 NAME: ftp_telnet_protocol
1419 TYPE: onoff
1420 DEFAULT: on
1421 LOC: Config.Ftp.telnet
1422 DOC_START
1423 The FTP protocol is officially defined to use the telnet protocol
1424 as transport channel for the control connection. However, many
1425 implementations are broken and does not respect this aspect of
1426 the FTP protocol.
1427
1428 If you have trouble accessing files with ASCII code 255 in the
1429 path or similar problems involving this ASCII code you can
1430 try setting this directive to off. If that helps, report to the
1431 operator of the FTP server in question that their FTP server
1432 is broken and does not follow the FTP standard.
1433 DOC_END
1434
1435 NAME: diskd_program
1436 TYPE: string
1437 DEFAULT: @DEFAULT_DISKD@
1438 LOC: Config.Program.diskd
1439 DOC_START
1440 Specify the location of the diskd executable.
1441 Note this is only useful if you have compiled in
1442 diskd as one of the store io modules.
1443 DOC_END
1444
1445 NAME: unlinkd_program
1446 IFDEF: USE_UNLINKD
1447 TYPE: string
1448 DEFAULT: @DEFAULT_UNLINKD@
1449 LOC: Config.Program.unlinkd
1450 DOC_START
1451 Specify the location of the executable for file deletion process.
1452 DOC_END
1453
1454 NAME: pinger_program
1455 TYPE: string
1456 DEFAULT: @DEFAULT_PINGER@
1457 LOC: Config.Program.pinger
1458 IFDEF: USE_ICMP
1459 DOC_START
1460 Specify the location of the executable for the pinger process.
1461 DOC_END
1462
1463 NAME: url_rewrite_program redirect_program
1464 TYPE: wordlist
1465 LOC: Config.Program.redirect
1466 DEFAULT: none
1467 DOC_START
1468 Specify the location of the executable for the URL rewriter.
1469 Since they can perform almost any function there isn't one included.
1470
1471 For each requested URL rewriter will receive on line with the format
1472
1473 URL <SP> client_ip "/" fqdn <SP> user <SP> method <NL>
1474
1475 And the rewriter may return a rewritten URL. The other components of
1476 the request line does not need to be returned (ignored if they are).
1477
1478 The rewriter can also indicate that a client-side redirect should
1479 be performed to the new URL. This is done by prefixing the returned
1480 URL with "301:" (moved permanently) or 302: (moved temporarily).
1481
1482 By default, a URL rewriter is not used.
1483 DOC_END
1484
1485 NAME: url_rewrite_children redirect_children
1486 TYPE: int
1487 DEFAULT: 5
1488 LOC: Config.redirectChildren
1489 DOC_START
1490 The number of redirector processes to spawn. If you start
1491 too few Squid will have to wait for them to process a backlog of
1492 URLs, slowing it down. If you start too many they will use RAM
1493 and other system resources.
1494 DOC_END
1495
1496 NAME: url_rewrite_concurrency redirect_concurrency
1497 TYPE: int
1498 DEFAULT: 0
1499 LOC: Config.redirectConcurrency
1500 DOC_START
1501 The number of requests each redirector helper can handle in
1502 parallel. Defaults to 0 which indicates the redirector
1503 is a old-style single threaded redirector.
1504 DOC_END
1505
1506 NAME: url_rewrite_host_header redirect_rewrites_host_header
1507 TYPE: onoff
1508 DEFAULT: on
1509 LOC: Config.onoff.redir_rewrites_host
1510 DOC_START
1511 By default Squid rewrites any Host: header in redirected
1512 requests. If you are running an accelerator this may
1513 not be a wanted effect of a redirector.
1514
1515 WARNING: Entries are cached on the result of the URL rewriting
1516 process, so be careful if you have domain-virtual hosts.
1517 DOC_END
1518
1519 NAME: url_rewrite_access redirector_access
1520 TYPE: acl_access
1521 DEFAULT: none
1522 LOC: Config.accessList.redirector
1523 DOC_START
1524 If defined, this access list specifies which requests are
1525 sent to the redirector processes. By default all requests
1526 are sent.
1527 DOC_END
1528
1529 NAME: auth_param
1530 TYPE: authparam
1531 LOC: Config.authConfiguration
1532 DEFAULT: none
1533 DOC_START
1534 This is used to define parameters for the various authentication
1535 schemes supported by Squid.
1536
1537 format: auth_param scheme parameter [setting]
1538
1539 The order in which authentication schemes are presented to the client is
1540 dependent on the order the scheme first appears in config file. IE
1541 has a bug (it's not RFC 2617 compliant) in that it will use the basic
1542 scheme if basic is the first entry presented, even if more secure
1543 schemes are presented. For now use the order in the recommended
1544 settings section below. If other browsers have difficulties (don't
1545 recognize the schemes offered even if you are using basic) either
1546 put basic first, or disable the other schemes (by commenting out their
1547 program entry).
1548
1549 Once an authentication scheme is fully configured, it can only be
1550 shutdown by shutting squid down and restarting. Changes can be made on
1551 the fly and activated with a reconfigure. I.E. You can change to a
1552 different helper, but not unconfigure the helper completely.
1553
1554 Please note that while this directive defines how Squid processes
1555 authentication it does not automatically activate authentication.
1556 To use authentication you must in addition make use of ACLs based
1557 on login name in http_access (proxy_auth, proxy_auth_regex or
1558 external with %LOGIN used in the format tag). The browser will be
1559 challenged for authentication on the first such acl encountered
1560 in http_access processing and will also be re-challenged for new
1561 login credentials if the request is being denied by a proxy_auth
1562 type acl.
1563
1564 WARNING: authentication can't be used in a transparently intercepting
1565 proxy as the client then thinks it is talking to an origin server and
1566 not the proxy. This is a limitation of bending the TCP/IP protocol to
1567 transparently intercepting port 80, not a limitation in Squid.
1568
1569 === Parameters for the basic scheme follow. ===
1570
1571 "program" cmdline
1572 Specify the command for the external authenticator. Such a program
1573 reads a line containing "username password" and replies "OK" or
1574 "ERR" in an endless loop. "ERR" responses may optionally be followed
1575 by a error description available as %m in the returned error page.
1576 If you use an authenticator, make sure you have 1 acl of type proxy_auth.
1577
1578 By default, the basic authentication scheme is not used unless a
1579 program is specified.
1580
1581 If you want to use the traditional NCSA proxy authentication, set
1582 this line to something like
1583
1584 auth_param basic program @DEFAULT_PREFIX@/libexec/ncsa_auth @DEFAULT_PREFIX@/etc/passwd
1585
1586 "children" numberofchildren
1587 The number of authenticator processes to spawn. If you start too few
1588 Squid will have to wait for them to process a backlog of credential
1589 verifications, slowing it down. When password verifications are
1590 done via a (slow) network you are likely to need lots of
1591 authenticator processes.
1592 auth_param basic children 5
1593
1594 "concurrency" concurrency
1595 The number of concurrent requests the helper can process.
1596 The default of 0 is used for helpers who only supports
1597 one request at a time. Setting this changes the protocol used to
1598 include a channel number first on the request/response line, allowing
1599 multiple requests to be sent to the same helper in parallell without
1600 wating for the response.
1601 Must not be set unless it's known the helper supports this.
1602 auth_param basic concurrency 0
1603
1604 "realm" realmstring
1605 Specifies the realm name which is to be reported to the
1606 client for the basic proxy authentication scheme (part of
1607 the text the user will see when prompted their username and
1608 password). There is no default.
1609 auth_param basic realm Squid proxy-caching web server
1610
1611 "credentialsttl" timetolive
1612 Specifies how long squid assumes an externally validated
1613 username:password pair is valid for - in other words how
1614 often the helper program is called for that user. Set this
1615 low to force revalidation with short lived passwords. Note
1616 setting this high does not impact your susceptibility
1617 to replay attacks unless you are using an one-time password
1618 system (such as SecureID). If you are using such a system,
1619 you will be vulnerable to replay attacks unless you also
1620 use the max_user_ip ACL in an http_access rule.
1621
1622 "casesensitive" on|off
1623 Specifies if usernames are case sensitive. Most user databases are
1624 case insensitive allowing the same username to be spelled using both
1625 lower and upper case letters, but some are case sensitive. This
1626 makes a big difference for user_max_ip ACL processing and similar.
1627 auth_param basic casesensitive off
1628
1629 === Parameters for the digest scheme follow ===
1630
1631 "program" cmdline
1632 Specify the command for the external authenticator. Such
1633 a program reads a line containing "username":"realm" and
1634 replies with the appropriate H(A1) value hex encoded or
1635 ERR if the user (or his H(A1) hash) does not exists.
1636 See rfc 2616 for the definition of H(A1).
1637 "ERR" responses may optionally be followed by a error description
1638 available as %m in the returned error page.
1639
1640 By default, the digest authentication scheme is not used unless a
1641 program is specified.
1642
1643 If you want to use a digest authenticator, set this line to
1644 something like
1645
1646 auth_param digest program @DEFAULT_PREFIX@/bin/digest_auth_pw @DEFAULT_PREFIX@/etc/digpass
1647
1648 "children" numberofchildren
1649 The number of authenticator processes to spawn (no default).
1650 If you start too few Squid will have to wait for them to
1651 process a backlog of H(A1) calculations, slowing it down.
1652 When the H(A1) calculations are done via a (slow) network
1653 you are likely to need lots of authenticator processes.
1654 auth_param digest children 5
1655
1656 "realm" realmstring
1657 Specifies the realm name which is to be reported to the
1658 client for the digest proxy authentication scheme (part of
1659 the text the user will see when prompted their username and
1660 password). There is no default.
1661 auth_param digest realm Squid proxy-caching web server
1662
1663 "nonce_garbage_interval" timeinterval
1664 Specifies the interval that nonces that have been issued
1665 to client_agent's are checked for validity.
1666
1667 "nonce_max_duration" timeinterval
1668 Specifies the maximum length of time a given nonce will be
1669 valid for.
1670
1671 "nonce_max_count" number
1672 Specifies the maximum number of times a given nonce can be
1673 used.
1674
1675 "nonce_strictness" on|off
1676 Determines if squid requires strict increment-by-1 behavior
1677 for nonce counts, or just incrementing (off - for use when
1678 useragents generate nonce counts that occasionally miss 1
1679 (ie, 1,2,4,6)). Default off.
1680
1681 "check_nonce_count" on|off
1682 This directive if set to off can disable the nonce count check
1683 completely to work around buggy digest qop implementations in
1684 certain mainstream browser versions. Default on to check the
1685 nonce count to protect from authentication replay attacks.
1686
1687 "post_workaround" on|off
1688 This is a workaround to certain buggy browsers who sends
1689 an incorrect request digest in POST requests when reusing
1690 the same nonce as acquired earlier on a GET request.
1691
1692 === NTLM scheme options follow ===
1693
1694 "program" cmdline
1695 Specify the command for the external NTLM authenticator.
1696 Such a program reads exchanged NTLMSSP packets with
1697 the browser via Squid until authentication is completed.
1698 If you use an NTLM authenticator, make sure you have 1 acl
1699 of type proxy_auth. By default, the NTLM authenticator_program
1700 is not used.
1701
1702 auth_param ntlm program @DEFAULT_PREFIX@/bin/ntlm_auth
1703
1704 "children" numberofchildren
1705 The number of authenticator processes to spawn (no default).
1706 If you start too few Squid will have to wait for them to
1707 process a backlog of credential verifications, slowing it
1708 down. When credential verifications are done via a (slow)
1709 network you are likely to need lots of authenticator
1710 processes.
1711
1712 auth_param ntlm children 5
1713
1714 "keep_alive" on|off
1715 If you experience problems with PUT/POST requests when using the
1716 Negotiate authentication scheme then you can try setting this to
1717 off. This will cause Squid to forcibly close the connection on
1718 the initial requests where the browser asks which schemes are
1719 supported by the proxy.
1720
1721 auth_param ntlm keep_alive on
1722
1723 === Options for configuring the NEGOTIATE auth-scheme follow ===
1724
1725 "program" cmdline
1726 Specify the command for the external Negotiate authenticator.
1727 This protocol is used in Microsoft Active-Directory enabled setups with
1728 the Microsoft Internet Explorer or Mozilla Firefox browsers.
1729 Its main purpose is to exchange credentials with the Squid proxy
1730 using the Kerberos mechanisms.
1731 If you use a Negotiate authenticator, make sure you have at least one acl
1732 of type proxy_auth active. By default, the negotiate authenticator_program
1733 is not used.
1734 The only supported program for this role is the ntlm_auth
1735 program distributed as part of Samba, version 4 or later.
1736
1737 auth_param negotiate program @DEFAULT_PREFIX@/bin/ntlm_auth --helper-protocol=gss-spnego
1738
1739 "children" numberofchildren
1740 The number of authenticator processes to spawn (no default).
1741 If you start too few Squid will have to wait for them to
1742 process a backlog of credential verifications, slowing it
1743 down. When crendential verifications are done via a (slow)
1744 network you are likely to need lots of authenticator
1745 processes.
1746 auth_param negotiate children 5
1747
1748 "keep_alive" on|off
1749 If you experience problems with PUT/POST requests when using the
1750 Negotiate authentication scheme then you can try setting this to
1751 off. This will cause Squid to forcibly close the connection on
1752 the initial requests where the browser asks which schemes are
1753 supported by the proxy.
1754
1755 auth_param negotiate keep_alive on
1756
1757 NOCOMMENT_START
1758 #Recommended minimum configuration per scheme:
1759 #auth_param negotiate program <uncomment and complete this line to activate>
1760 #auth_param negotiate children 5
1761 #auth_param negotiate keep_alive on
1762 #auth_param ntlm program <uncomment and complete this line to activate>
1763 #auth_param ntlm children 5
1764 #auth_param ntlm keep_alive on
1765 #auth_param digest program <uncomment and complete this line>
1766 #auth_param digest children 5
1767 #auth_param digest realm Squid proxy-caching web server
1768 #auth_param digest nonce_garbage_interval 5 minutes
1769 #auth_param digest nonce_max_duration 30 minutes
1770 #auth_param digest nonce_max_count 50
1771 #auth_param basic program <uncomment and complete this line>
1772 #auth_param basic children 5
1773 #auth_param basic realm Squid proxy-caching web server
1774 #auth_param basic credentialsttl 2 hours
1775 NOCOMMENT_END
1776 DOC_END
1777
1778 NAME: authenticate_cache_garbage_interval
1779 TYPE: time_t
1780 DEFAULT: 1 hour
1781 LOC: Config.authenticateGCInterval
1782 DOC_START
1783 The time period between garbage collection across the username cache.
1784 This is a tradeoff between memory utilization (long intervals - say
1785 2 days) and CPU (short intervals - say 1 minute). Only change if you
1786 have good reason to.
1787 DOC_END
1788
1789 NAME: authenticate_ttl
1790 TYPE: time_t
1791 DEFAULT: 1 hour
1792 LOC: Config.authenticateTTL
1793 DOC_START
1794 The time a user & their credentials stay in the logged in
1795 user cache since their last request. When the garbage
1796 interval passes, all user credentials that have passed their
1797 TTL are removed from memory.
1798 DOC_END
1799
1800 NAME: authenticate_ip_ttl
1801 TYPE: time_t
1802 LOC: Config.authenticateIpTTL
1803 DEFAULT: 0 seconds
1804 DOC_START
1805 If you use proxy authentication and the 'max_user_ip' ACL,
1806 this directive controls how long Squid remembers the IP
1807 addresses associated with each user. Use a small value
1808 (e.g., 60 seconds) if your users might change addresses
1809 quickly, as is the case with dialups. You might be safe
1810 using a larger value (e.g., 2 hours) in a corporate LAN
1811 environment with relatively static address assignments.
1812 DOC_END
1813
1814 NAME: external_acl_type
1815 TYPE: externalAclHelper
1816 LOC: Config.externalAclHelperList
1817 DEFAULT: none
1818 DOC_START
1819 This option defines external acl classes using a helper program
1820 to look up the status
1821
1822 external_acl_type name [options] FORMAT.. /path/to/helper [helper arguments..]
1823
1824 Options:
1825
1826 ttl=n TTL in seconds for cached results (defaults to 3600
1827 for 1 hour)
1828 negative_ttl=n
1829 TTL for cached negative lookups (default same
1830 as ttl)
1831 children=n Number of acl helper processes spawn to service
1832 external acl lookups of this type. (default 5)
1833 concurrency=n concurrency level per process. Only used with helpers
1834 capable of processing more than one query at a time.
1835 cache=n result cache size, 0 is unbounded (default)
1836 grace=n Percentage remaining of TTL where a refresh of a
1837 cached entry should be initiated without needing to
1838 wait for a new reply. (default 0 for no grace period)
1839 protocol=2.5 Compatibility mode for Squid-2.5 external acl helpers
1840
1841 FORMAT specifications
1842
1843 %LOGIN Authenticated user login name
1844 %EXT_USER Username from external acl
1845 %IDENT Ident user name
1846 %SRC Client IP
1847 %SRCPORT Client source port
1848 %URI Requested URI
1849 %DST Requested host
1850 %PROTO Requested protocol
1851 %PORT Requested port
1852 %PATH Requested URL path
1853 %METHOD Request method
1854 %MYADDR Squid interface address
1855 %MYPORT Squid http_port number
1856 %PATH Requested URL-path (including query-string if any)
1857 %USER_CERT SSL User certificate in PEM format
1858 %USER_CERTCHAIN SSL User certificate chain in PEM format
1859 %USER_CERT_xx SSL User certificate subject attribute xx
1860 %USER_CA_xx SSL User certificate issuer attribute xx
1861 %{Header} HTTP request header
1862 %{Hdr:member} HTTP request header list member
1863 %{Hdr:;member}
1864 HTTP request header list member using ; as
1865 list separator. ; can be any non-alphanumeric
1866 character.
1867
1868 In addition to the above, any string specified in the referencing
1869 acl will also be included in the helper request line, after the
1870 specified formats (see the "acl external" directive)
1871
1872 The helper receives lines per the above format specification,
1873 and returns lines starting with OK or ERR indicating the validity
1874 of the request and optionally followed by additional keywords with
1875 more details.
1876
1877 General result syntax:
1878
1879 OK/ERR keyword=value ...
1880
1881 Defined keywords:
1882
1883 user= The users name (login)
1884 password= The users password (for login= cache_peer option)
1885 message= Message describing the reason. Available as %o
1886 in error pages
1887 tag= Apply a tag to a request (for both ERR and OK results)
1888 Only sets a tag, does not alter existing tags.
1889 log= String to be logged in access.log. Available as
1890 %ea in logformat specifications
1891
1892 If protocol=3.0 (the default) then URL escaping is used to protect
1893 each value in both requests and responses.
1894
1895 If using protocol=2.5 then all values need to be enclosed in quotes
1896 if they may contain whitespace, or the whitespace escaped using \.
1897 And quotes or \ characters within the keyword value must be \ escaped.
1898
1899 When using the concurrency= option the protocol is changed by
1900 introducing a query channel tag infront of the request/response.
1901 The query channel tag is a number between 0 and concurrency-1.
1902 DOC_END
1903
1904 COMMENT_START
1905 OPTIONS FOR TUNING THE CACHE
1906 -----------------------------------------------------------------------------
1907 COMMENT_END
1908
1909 NAME: request_header_max_size
1910 COMMENT: (KB)
1911 TYPE: b_size_t
1912 DEFAULT: 20 KB
1913 LOC: Config.maxRequestHeaderSize
1914 DOC_START
1915 This specifies the maximum size for HTTP headers in a request.
1916 Request headers are usually relatively small (about 512 bytes).
1917 Placing a limit on the request header size will catch certain
1918 bugs (for example with persistent connections) and possibly
1919 buffer-overflow or denial-of-service attacks.
1920 DOC_END
1921
1922 NAME: request_body_max_size
1923 COMMENT: (bytes)
1924 TYPE: b_int64_t
1925 DEFAULT: 0 KB
1926 LOC: Config.maxRequestBodySize
1927 DOC_START
1928 This specifies the maximum size for an HTTP request body.
1929 In other words, the maximum size of a PUT/POST request.
1930 A user who attempts to send a request with a body larger
1931 than this limit receives an "Invalid Request" error message.
1932 If you set this parameter to a zero (the default), there will
1933 be no limit imposed.
1934 DOC_END
1935
1936 NAME: refresh_pattern
1937 TYPE: refreshpattern
1938 LOC: Config.Refresh
1939 DEFAULT: none
1940 DOC_START
1941 usage: refresh_pattern [-i] regex min percent max [options]
1942
1943 By default, regular expressions are CASE-SENSITIVE. To make
1944 them case-insensitive, use the -i option.
1945
1946 'Min' is the time (in minutes) an object without an explicit
1947 expiry time should be considered fresh. The recommended
1948 value is 0, any higher values may cause dynamic applications
1949 to be erroneously cached unless the application designer
1950 has taken the appropriate actions.
1951
1952 'Percent' is a percentage of the objects age (time since last
1953 modification age) an object without explicit expiry time
1954 will be considered fresh.
1955
1956 'Max' is an upper limit on how long objects without an explicit
1957 expiry time will be considered fresh.
1958
1959 options: override-expire
1960 override-lastmod
1961 reload-into-ims
1962 ignore-reload
1963 ignore-no-cache
1964 ignore-no-store
1965 ignore-private
1966 ignore-auth
1967 refresh-ims
1968
1969 override-expire enforces min age even if the server
1970 sent a Expires: header. Doing this VIOLATES the HTTP
1971 standard. Enabling this feature could make you liable
1972 for problems which it causes.
1973
1974 override-lastmod enforces min age even on objects
1975 that were modified recently.
1976
1977 reload-into-ims changes client no-cache or ``reload''
1978 to If-Modified-Since requests. Doing this VIOLATES the
1979 HTTP standard. Enabling this feature could make you
1980 liable for problems which it causes.
1981
1982 ignore-reload ignores a client no-cache or ``reload''
1983 header. Doing this VIOLATES the HTTP standard. Enabling
1984 this feature could make you liable for problems which
1985 it causes.
1986
1987 ignore-no-cache ignores any ``Pragma: no-cache'' and
1988 ``Cache-control: no-cache'' headers received from a server.
1989 The HTTP RFC never allows the use of this (Pragma) header
1990 from a server, only a client, though plenty of servers
1991 send it anyway.
1992
1993 ignore-no-store ignores any ``Cache-control: no-store''
1994 headers received from a server. Doing this VIOLATES
1995 the HTTP standard. Enabling this feature could make you
1996 liable for problems which it causes.
1997
1998 ignore-private ignores any ``Cache-control: private''
1999 headers received from a server. Doing this VIOLATES
2000 the HTTP standard. Enabling this feature could make you
2001 liable for problems which it causes.
2002
2003 ignore-auth caches responses to requests with authorization,
2004 as if the originserver had sent ``Cache-control: public''
2005 in the response header. Doing this VIOLATES the HTTP standard.
2006 Enabling this feature could make you liable for problems which
2007 it causes.
2008
2009 refresh-ims causes squid to contact the origin server
2010 when a client issues an If-Modified-Since request. This
2011 ensures that the client will receive an updated version
2012 if one is available.
2013
2014 Basically a cached object is:
2015
2016 FRESH if expires < now, else STALE
2017 STALE if age > max
2018 FRESH if lm-factor < percent, else STALE
2019 FRESH if age < min
2020 else STALE
2021
2022 The refresh_pattern lines are checked in the order listed here.
2023 The first entry which matches is used. If none of the entries
2024 match the default will be used.
2025
2026 Note, you must uncomment all the default lines if you want
2027 to change one. The default setting is only active if none is
2028 used.
2029
2030 Suggested default:
2031 NOCOMMENT_START
2032 refresh_pattern ^ftp: 1440 20% 10080
2033 refresh_pattern ^gopher: 1440 0% 1440
2034 refresh_pattern . 0 20% 4320
2035 NOCOMMENT_END
2036 DOC_END
2037
2038 NAME: quick_abort_min
2039 COMMENT: (KB)
2040 TYPE: kb_int64_t
2041 DEFAULT: 16 KB
2042 LOC: Config.quickAbort.min
2043 DOC_NONE
2044
2045 NAME: quick_abort_max
2046 COMMENT: (KB)
2047 TYPE: kb_int64_t
2048 DEFAULT: 16 KB
2049 LOC: Config.quickAbort.max
2050 DOC_NONE
2051
2052 NAME: quick_abort_pct
2053 COMMENT: (percent)
2054 TYPE: int
2055 DEFAULT: 95
2056 LOC: Config.quickAbort.pct
2057 DOC_START
2058 The cache by default continues downloading aborted requests
2059 which are almost completed (less than 16 KB remaining). This
2060 may be undesirable on slow (e.g. SLIP) links and/or very busy
2061 caches. Impatient users may tie up file descriptors and
2062 bandwidth by repeatedly requesting and immediately aborting
2063 downloads.
2064
2065 When the user aborts a request, Squid will check the
2066 quick_abort values to the amount of data transfered until
2067 then.
2068
2069 If the transfer has less than 'quick_abort_min' KB remaining,
2070 it will finish the retrieval.
2071
2072 If the transfer has more than 'quick_abort_max' KB remaining,
2073 it will abort the retrieval.
2074
2075 If more than 'quick_abort_pct' of the transfer has completed,
2076 it will finish the retrieval.
2077
2078 If you do not want any retrieval to continue after the client
2079 has aborted, set both 'quick_abort_min' and 'quick_abort_max'
2080 to '0 KB'.
2081
2082 If you want retrievals to always continue if they are being
2083 cached set 'quick_abort_min' to '-1 KB'.
2084 DOC_END
2085
2086 NAME: read_ahead_gap
2087 COMMENT: buffer-size
2088 TYPE: b_int64_t
2089 LOC: Config.readAheadGap
2090 DEFAULT: 16 KB
2091 DOC_START
2092 The amount of data the cache will buffer ahead of what has been
2093 sent to the client when retrieving an object from another server.
2094 DOC_END
2095
2096 NAME: negative_ttl
2097 COMMENT: time-units
2098 TYPE: time_t
2099 LOC: Config.negativeTtl
2100 DEFAULT: 5 minutes
2101 DOC_START
2102 Time-to-Live (TTL) for failed requests. Certain types of
2103 failures (such as "connection refused" and "404 Not Found") are
2104 negatively-cached for a configurable amount of time. The
2105 default is 5 minutes. Note that this is different from
2106 negative caching of DNS lookups.
2107 DOC_END
2108
2109 NAME: positive_dns_ttl
2110 COMMENT: time-units
2111 TYPE: time_t
2112 LOC: Config.positiveDnsTtl
2113 DEFAULT: 6 hours
2114 DOC_START
2115 Upper limit on how long Squid will cache positive DNS responses.
2116 Default is 6 hours (360 minutes). This directive must be set
2117 larger than negative_dns_ttl.
2118 DOC_END
2119
2120 NAME: negative_dns_ttl
2121 COMMENT: time-units
2122 TYPE: time_t
2123 LOC: Config.negativeDnsTtl
2124 DEFAULT: 1 minutes
2125 DOC_START
2126 Time-to-Live (TTL) for negative caching of failed DNS lookups.
2127 This also sets the lower cache limit on positive lookups.
2128 Minimum value is 1 second, and it is not recommendable to go
2129 much below 10 seconds.
2130 DOC_END
2131
2132 NAME: range_offset_limit
2133 COMMENT: (bytes)
2134 TYPE: b_int64_t
2135 LOC: Config.rangeOffsetLimit
2136 DEFAULT: 0 KB
2137 DOC_START
2138 Sets a upper limit on how far into the the file a Range request
2139 may be to cause Squid to prefetch the whole file. If beyond this
2140 limit Squid forwards the Range request as it is and the result
2141 is NOT cached.
2142
2143 This is to stop a far ahead range request (lets say start at 17MB)
2144 from making Squid fetch the whole object up to that point before
2145 sending anything to the client.
2146
2147 A value of -1 causes Squid to always fetch the object from the
2148 beginning so it may cache the result. (2.0 style)
2149
2150 A value of 0 causes Squid to never fetch more than the
2151 client requested. (default)
2152 DOC_END
2153
2154 NAME: minimum_expiry_time
2155 COMMENT: (seconds)
2156 TYPE: time_t
2157 LOC: Config.minimum_expiry_time
2158 DEFAULT: 60 seconds
2159 DOC_START
2160 The minimum caching time according to (Expires - Date)
2161 Headers Squid honors if the object can't be revalidated
2162 defaults to 60 seconds. In reverse proxy enorinments it
2163 might be desirable to honor shorter object lifetimes. It
2164 is most likely better to make your server return a
2165 meaningful Last-Modified header however. In ESI environments
2166 where page fragments often have short lifetimes, this will
2167 often be best set to 0.
2168 DOC_END
2169
2170 NAME: store_avg_object_size
2171 COMMENT: (kbytes)
2172 TYPE: kb_size_t
2173 DEFAULT: 13 KB
2174 LOC: Config.Store.avgObjectSize
2175 DOC_START
2176 Average object size, used to estimate number of objects your
2177 cache can hold. The default is 13 KB.
2178 DOC_END
2179
2180 NAME: store_objects_per_bucket
2181 TYPE: int
2182 DEFAULT: 20
2183 LOC: Config.Store.objectsPerBucket
2184 DOC_START
2185 Target number of objects per bucket in the store hash table.
2186 Lowering this value increases the total number of buckets and
2187 also the storage maintenance rate. The default is 20.
2188 DOC_END
2189
2190 COMMENT_START
2191 HTTP OPTIONS
2192 -----------------------------------------------------------------------------
2193 COMMENT_END
2194
2195 NAME: broken_posts
2196 TYPE: acl_access
2197 DEFAULT: none
2198 LOC: Config.accessList.brokenPosts
2199 DOC_START
2200 A list of ACL elements which, if matched, causes Squid to send
2201 an extra CRLF pair after the body of a PUT/POST request.
2202
2203 Some HTTP servers has broken implementations of PUT/POST,
2204 and rely on an extra CRLF pair sent by some WWW clients.
2205
2206 Quote from RFC2616 section 4.1 on this matter:
2207
2208 Note: certain buggy HTTP/1.0 client implementations generate an
2209 extra CRLF's after a POST request. To restate what is explicitly
2210 forbidden by the BNF, an HTTP/1.1 client must not preface or follow
2211 a request with an extra CRLF.
2212
2213 Example:
2214 acl buggy_server url_regex ^http://....
2215 broken_posts allow buggy_server
2216 DOC_END
2217
2218 NAME: via
2219 IFDEF: HTTP_VIOLATIONS
2220 COMMENT: on|off
2221 TYPE: onoff
2222 DEFAULT: on
2223 LOC: Config.onoff.via
2224 DOC_START
2225 If set (default), Squid will include a Via header in requests and
2226 replies as required by RFC2616.
2227 DOC_END
2228
2229 NAME: ie_refresh
2230 COMMENT: on|off
2231 TYPE: onoff
2232 LOC: Config.onoff.ie_refresh
2233 DEFAULT: off
2234 DOC_START
2235 Microsoft Internet Explorer up until version 5.5 Service
2236 Pack 1 has an issue with transparent proxies, wherein it
2237 is impossible to force a refresh. Turning this on provides
2238 a partial fix to the problem, by causing all IMS-REFRESH
2239 requests from older IE versions to check the origin server
2240 for fresh content. This reduces hit ratio by some amount
2241 (~10% in my experience), but allows users to actually get
2242 fresh content when they want it. Note because Squid
2243 cannot tell if the user is using 5.5 or 5.5SP1, the behavior
2244 of 5.5 is unchanged from old versions of Squid (i.e. a
2245 forced refresh is impossible). Newer versions of IE will,
2246 hopefully, continue to have the new behavior and will be
2247 handled based on that assumption. This option defaults to
2248 the old Squid behavior, which is better for hit ratios but
2249 worse for clients using IE, if they need to be able to
2250 force fresh content.
2251 DOC_END
2252
2253 NAME: vary_ignore_expire
2254 COMMENT: on|off
2255 TYPE: onoff
2256 LOC: Config.onoff.vary_ignore_expire
2257 DEFAULT: off
2258 DOC_START
2259 Many HTTP servers supporting Vary gives such objects
2260 immediate expiry time with no cache-control header
2261 when requested by a HTTP/1.0 client. This option
2262 enables Squid to ignore such expiry times until
2263 HTTP/1.1 is fully implemented.
2264 WARNING: This may eventually cause some varying
2265 objects not intended for caching to get cached.
2266 DOC_END
2267
2268 NAME: extension_methods
2269 TYPE: wordlist
2270 LOC: Config.ext_methods
2271 DEFAULT: none
2272 DOC_START
2273 Squid only knows about standardized HTTP request methods.
2274 You can add up to 20 additional "extension" methods here.
2275 DOC_END
2276
2277 NAME: request_entities
2278 TYPE: onoff
2279 LOC: Config.onoff.request_entities
2280 DEFAULT: off
2281 DOC_START
2282 Squid defaults to deny GET and HEAD requests with request entities,
2283 as the meaning of such requests are undefined in the HTTP standard
2284 even if not explicitly forbidden.
2285
2286 Set this directive to on if you have clients which insists
2287 on sending request entities in GET or HEAD requests. But be warned
2288 that there is server software (both proxies and web servers) which
2289 can fail to properly process this kind of request which may make you
2290 vulnerable to cache pollution attacks if enabled.
2291 DOC_END
2292
2293 NAME: request_header_access
2294 IFDEF: HTTP_VIOLATIONS
2295 TYPE: http_header_access[]
2296 LOC: Config.request_header_access
2297 DEFAULT: none
2298 DOC_START
2299 Usage: request_header_access header_name allow|deny [!]aclname ...
2300
2301 WARNING: Doing this VIOLATES the HTTP standard. Enabling
2302 this feature could make you liable for problems which it
2303 causes.
2304
2305 This option replaces the old 'anonymize_headers' and the
2306 older 'http_anonymizer' option with something that is much
2307 more configurable. This new method creates a list of ACLs
2308 for each header, allowing you very fine-tuned header
2309 mangling.
2310
2311 This option only applies to request headers, i.e., from the
2312 client to the server.
2313
2314 You can only specify known headers for the header name.
2315 Other headers are reclassified as 'Other'. You can also
2316 refer to all the headers with 'All'.
2317
2318 For example, to achieve the same behavior as the old
2319 'http_anonymizer standard' option, you should use:
2320
2321 request_header_access From deny all
2322 request_header_access Referer deny all
2323 request_header_access Server deny all
2324 request_header_access User-Agent deny all
2325 request_header_access WWW-Authenticate deny all
2326 request_header_access Link deny all
2327
2328 Or, to reproduce the old 'http_anonymizer paranoid' feature
2329 you should use:
2330
2331 request_header_access Allow allow all
2332 request_header_access Authorization allow all
2333 request_header_access WWW-Authenticate allow all
2334 request_header_access Proxy-Authorization allow all
2335 request_header_access Proxy-Authenticate allow all
2336 request_header_access Cache-Control allow all
2337 request_header_access Content-Encoding allow all
2338 request_header_access Content-Length allow all
2339 request_header_access Content-Type allow all
2340 request_header_access Date allow all
2341 request_header_access Expires allow all
2342 request_header_access Host allow all
2343 request_header_access If-Modified-Since allow all
2344 request_header_access Last-Modified allow all
2345 request_header_access Location allow all
2346 request_header_access Pragma allow all
2347 request_header_access Accept allow all
2348 request_header_access Accept-Charset allow all
2349 request_header_access Accept-Encoding allow all
2350 request_header_access Accept-Language allow all
2351 request_header_access Content-Language allow all
2352 request_header_access Mime-Version allow all
2353 request_header_access Retry-After allow all
2354 request_header_access Title allow all
2355 request_header_access Connection allow all
2356 request_header_access Proxy-Connection allow all
2357 request_header_access All deny all
2358
2359 although many of those are HTTP reply headers, and so should be
2360 controlled with the reply_header_access directive.
2361
2362 By default, all headers are allowed (no anonymizing is
2363 performed).
2364 DOC_END
2365
2366 NAME: reply_header_access
2367 IFDEF: HTTP_VIOLATIONS
2368 TYPE: http_header_access[]
2369 LOC: Config.reply_header_access
2370 DEFAULT: none
2371 DOC_START
2372 Usage: reply_header_access header_name allow|deny [!]aclname ...
2373
2374 WARNING: Doing this VIOLATES the HTTP standard. Enabling
2375 this feature could make you liable for problems which it
2376 causes.
2377
2378 This option only applies to reply headers, i.e., from the
2379 server to the client.
2380
2381 This is the same as request_header_access, but in the other
2382 direction.
2383
2384 This option replaces the old 'anonymize_headers' and the
2385 older 'http_anonymizer' option with something that is much
2386 more configurable. This new method creates a list of ACLs
2387 for each header, allowing you very fine-tuned header
2388 mangling.
2389
2390 You can only specify known headers for the header name.
2391 Other headers are reclassified as 'Other'. You can also
2392 refer to all the headers with 'All'.
2393
2394 For example, to achieve the same behavior as the old
2395 'http_anonymizer standard' option, you should use:
2396
2397 reply_header_access From deny all
2398 reply_header_access Referer deny all
2399 reply_header_access Server deny all
2400 reply_header_access User-Agent deny all
2401 reply_header_access WWW-Authenticate deny all
2402 reply_header_access Link deny all
2403
2404 Or, to reproduce the old 'http_anonymizer paranoid' feature
2405 you should use:
2406
2407 reply_header_access Allow allow all
2408 reply_header_access Authorization allow all
2409 reply_header_access WWW-Authenticate allow all
2410 reply_header_access Proxy-Authorization allow all
2411 reply_header_access Proxy-Authenticate allow all
2412 reply_header_access Cache-Control allow all
2413 reply_header_access Content-Encoding allow all
2414 reply_header_access Content-Length allow all
2415 reply_header_access Content-Type allow all
2416 reply_header_access Date allow all
2417 reply_header_access Expires allow all
2418 reply_header_access Host allow all
2419 reply_header_access If-Modified-Since allow all
2420 reply_header_access Last-Modified allow all
2421 reply_header_access Location allow all
2422 reply_header_access Pragma allow all
2423 reply_header_access Accept allow all
2424 reply_header_access Accept-Charset allow all
2425 reply_header_access Accept-Encoding allow all
2426 reply_header_access Accept-Language allow all
2427 reply_header_access Content-Language allow all
2428 reply_header_access Mime-Version allow all
2429 reply_header_access Retry-After allow all
2430 reply_header_access Title allow all
2431 reply_header_access Connection allow all
2432 reply_header_access Proxy-Connection allow all
2433 reply_header_access All deny all
2434
2435 although the HTTP request headers won't be usefully controlled
2436 by this directive -- see request_header_access for details.
2437
2438 By default, all headers are allowed (no anonymizing is
2439 performed).
2440 DOC_END
2441
2442 NAME: header_replace
2443 IFDEF: HTTP_VIOLATIONS
2444 TYPE: http_header_replace[]
2445 LOC: Config.request_header_access
2446 DEFAULT: none
2447 DOC_START
2448 Usage: header_replace header_name message
2449 Example: header_replace User-Agent Nutscrape/1.0 (CP/M; 8-bit)
2450
2451 This option allows you to change the contents of headers
2452 denied with header_access above, by replacing them with
2453 some fixed string. This replaces the old fake_user_agent
2454 option.
2455
2456 This only applies to request headers, not reply headers.
2457
2458 By default, headers are removed if denied.
2459 DOC_END
2460
2461 NAME: relaxed_header_parser
2462 COMMENT: on|off|warn
2463 TYPE: tristate
2464 LOC: Config.onoff.relaxed_header_parser
2465 DEFAULT: on
2466 DOC_START
2467 In the default "on" setting Squid accepts certain forms
2468 of non-compliant HTTP messages where it is unambiguous
2469 what the sending application intended even if the message
2470 is not correctly formatted. The messages is then normalized
2471 to the correct form when forwarded by Squid.
2472
2473 If set to "warn" then a warning will be emitted in cache.log
2474 each time such HTTP error is encountered.
2475
2476 If set to "off" then such HTTP errors will cause the request
2477 or response to be rejected.
2478 DOC_END
2479
2480 COMMENT_START
2481 TIMEOUTS
2482 -----------------------------------------------------------------------------
2483 COMMENT_END
2484
2485 NAME: forward_timeout
2486 COMMENT: time-units
2487 TYPE: time_t
2488 LOC: Config.Timeout.forward
2489 DEFAULT: 4 minutes
2490 DOC_START
2491 This parameter specifies how long Squid should at most attempt in
2492 finding a forwarding path for the request before giving up.
2493 DOC_END
2494
2495 NAME: connect_timeout
2496 COMMENT: time-units
2497 TYPE: time_t
2498 LOC: Config.Timeout.connect
2499 DEFAULT: 1 minute
2500 DOC_START
2501 This parameter specifies how long to wait for the TCP connect to
2502 the requested server or peer to complete before Squid should
2503 attempt to find another path where to forward the request.
2504 DOC_END
2505
2506 NAME: peer_connect_timeout
2507 COMMENT: time-units
2508 TYPE: time_t
2509 LOC: Config.Timeout.peer_connect
2510 DEFAULT: 30 seconds
2511 DOC_START
2512 This parameter specifies how long to wait for a pending TCP
2513 connection to a peer cache. The default is 30 seconds. You
2514 may also set different timeout values for individual neighbors
2515 with the 'connect-timeout' option on a 'cache_peer' line.
2516 DOC_END
2517
2518 NAME: read_timeout
2519 COMMENT: time-units
2520 TYPE: time_t
2521 LOC: Config.Timeout.read
2522 DEFAULT: 15 minutes
2523 DOC_START
2524 The read_timeout is applied on server-side connections. After
2525 each successful read(), the timeout will be extended by this
2526 amount. If no data is read again after this amount of time,
2527 the request is aborted and logged with ERR_READ_TIMEOUT. The
2528 default is 15 minutes.
2529 DOC_END
2530
2531 NAME: request_timeout
2532 TYPE: time_t
2533 LOC: Config.Timeout.request
2534 DEFAULT: 5 minutes
2535 DOC_START
2536 How long to wait for an HTTP request after initial
2537 connection establishment.
2538 DOC_END
2539
2540 NAME: persistent_request_timeout
2541 TYPE: time_t
2542 LOC: Config.Timeout.persistent_request
2543 DEFAULT: 1 minute
2544 DOC_START
2545 How long to wait for the next HTTP request on a persistent
2546 connection after the previous request completes.
2547 DOC_END
2548
2549 NAME: client_lifetime
2550 COMMENT: time-units
2551 TYPE: time_t
2552 LOC: Config.Timeout.lifetime
2553 DEFAULT: 1 day
2554 DOC_START
2555 The maximum amount of time a client (browser) is allowed to
2556 remain connected to the cache process. This protects the Cache
2557 from having a lot of sockets (and hence file descriptors) tied up
2558 in a CLOSE_WAIT state from remote clients that go away without
2559 properly shutting down (either because of a network failure or
2560 because of a poor client implementation). The default is one
2561 day, 1440 minutes.
2562
2563 NOTE: The default value is intended to be much larger than any
2564 client would ever need to be connected to your cache. You
2565 should probably change client_lifetime only as a last resort.
2566 If you seem to have many client connections tying up
2567 filedescriptors, we recommend first tuning the read_timeout,
2568 request_timeout, persistent_request_timeout and quick_abort values.
2569 DOC_END
2570
2571 NAME: half_closed_clients
2572 TYPE: onoff
2573 LOC: Config.onoff.half_closed_clients
2574 DEFAULT: on
2575 DOC_START
2576 Some clients may shutdown the sending side of their TCP
2577 connections, while leaving their receiving sides open. Sometimes,
2578 Squid can not tell the difference between a half-closed and a
2579 fully-closed TCP connection. By default, half-closed client
2580 connections are kept open until a read(2) or write(2) on the
2581 socket returns an error. Change this option to 'off' and Squid
2582 will immediately close client connections when read(2) returns
2583 "no more data to read."
2584 DOC_END
2585
2586 NAME: pconn_timeout
2587 TYPE: time_t
2588 LOC: Config.Timeout.pconn
2589 DEFAULT: 120 seconds
2590 DOC_START
2591 Timeout for idle persistent connections to servers and other
2592 proxies.
2593 DOC_END
2594
2595 NAME: ident_timeout
2596 TYPE: time_t
2597 IFDEF: USE_IDENT
2598 LOC: Config.Timeout.ident
2599 DEFAULT: 10 seconds
2600 DOC_START
2601 Maximum time to wait for IDENT lookups to complete.
2602
2603 If this is too high, and you enabled IDENT lookups from untrusted
2604 users, you might be susceptible to denial-of-service by having
2605 many ident requests going at once.
2606 DOC_END
2607
2608 NAME: shutdown_lifetime
2609 COMMENT: time-units
2610 TYPE: time_t
2611 LOC: Config.shutdownLifetime
2612 DEFAULT: 30 seconds
2613 DOC_START
2614 When SIGTERM or SIGHUP is received, the cache is put into
2615 "shutdown pending" mode until all active sockets are closed.
2616 This value is the lifetime to set for all open descriptors
2617 during shutdown mode. Any active clients after this many
2618 seconds will receive a 'timeout' message.
2619 DOC_END
2620
2621 COMMENT_START
2622 ACCESS CONTROLS
2623 -----------------------------------------------------------------------------
2624 COMMENT_END
2625
2626 NAME: acl
2627 TYPE: acl
2628 LOC: Config.aclList
2629 DEFAULT: none
2630 DOC_START
2631 Defining an Access List
2632
2633 acl aclname acltype string1 ...
2634 acl aclname acltype "file" ...
2635
2636 when using "file", the file should contain one item per line
2637
2638 acltype is one of the types described below
2639
2640 By default, regular expressions are CASE-SENSITIVE. To make
2641 them case-insensitive, use the -i option.
2642
2643 acl aclname src ip-address/netmask ... (clients IP address)
2644 acl aclname src addr1-addr2/netmask ... (range of addresses)
2645 acl aclname dst ip-address/netmask ... (URL host's IP address)
2646 acl aclname myip ip-address/netmask ... (local socket IP address)
2647
2648 acl aclname arp mac-address ... (xx:xx:xx:xx:xx:xx notation)
2649 # The arp ACL requires the special configure option --enable-arp-acl.
2650 # Furthermore, the ARP ACL code is not portable to all operating systems.
2651 # It works on Linux, Solaris, Windows, FreeBSD, and some other *BSD variants.
2652 #
2653 # NOTE: Squid can only determine the MAC address for clients that are on
2654 # the same subnet. If the client is on a different subnet, then Squid cannot
2655 # find out its MAC address.
2656
2657 acl aclname srcdomain .foo.com ... # reverse lookup, client IP
2658 acl aclname dstdomain .foo.com ... # Destination server from URL
2659 acl aclname srcdom_regex [-i] xxx ... # regex matching client name
2660 acl aclname dstdom_regex [-i] xxx ... # regex matching server
2661 # For dstdomain and dstdom_regex a reverse lookup is tried if a IP
2662 # based URL is used and no match is found. The name "none" is used
2663 # if the reverse lookup fails.
2664
2665 acl aclname http_status 200 301 500- 400-403 ... # status code in reply
2666
2667 acl aclname time [day-abbrevs] [h1:m1-h2:m2]
2668 day-abbrevs:
2669 S - Sunday
2670 M - Monday
2671 T - Tuesday
2672 W - Wednesday
2673 H - Thursday
2674 F - Friday
2675 A - Saturday
2676 h1:m1 must be less than h2:m2
2677 acl aclname url_regex [-i] ^http:// ... # regex matching on whole URL
2678 acl aclname urlpath_regex [-i] \.gif$ ... # regex matching on URL path
2679 acl aclname port 80 70 21 ...
2680 acl aclname port 0-1024 ... # ranges allowed
2681 acl aclname myport 3128 ... # (local socket TCP port)
2682 acl aclname proto HTTP FTP ...
2683 acl aclname method GET POST ...
2684 acl aclname browser [-i] regexp ...
2685 # pattern match on User-Agent header (see also req_header below)
2686 acl aclname referer_regex [-i] regexp ...
2687 # pattern match on Referer header
2688 # Referer is highly unreliable, so use with care
2689 acl aclname ident username ...
2690 acl aclname ident_regex [-i] pattern ...
2691 # string match on ident output.
2692 # use REQUIRED to accept any non-null ident.
2693 acl aclname src_as number ...
2694 acl aclname dst_as number ...
2695 # Except for access control, AS numbers can be used for
2696 # routing of requests to specific caches. Here's an
2697 # example for routing all requests for AS#1241 and only
2698 # those to mycache.mydomain.net:
2699 # acl asexample dst_as 1241
2700 # cache_peer_access mycache.mydomain.net allow asexample
2701 # cache_peer_access mycache_mydomain.net deny all
2702
2703 acl aclname proxy_auth [-i] username ...
2704 acl aclname proxy_auth_regex [-i] pattern ...
2705 # list of valid usernames
2706 # use REQUIRED to accept any valid username.
2707 #
2708 # NOTE: when a Proxy-Authentication header is sent but it is not
2709 # needed during ACL checking the username is NOT logged
2710 # in access.log.
2711 #
2712 # NOTE: proxy_auth requires a EXTERNAL authentication program
2713 # to check username/password combinations (see
2714 # auth_param directive).
2715 #
2716 # NOTE: proxy_auth can't be used in a transparent proxy as
2717 # the browser needs to be configured for using a proxy in order
2718 # to respond to proxy authentication.
2719
2720 acl aclname snmp_community string ...
2721 # A community string to limit access to your SNMP Agent
2722 # Example:
2723 #
2724 # acl snmppublic snmp_community public
2725
2726 acl aclname maxconn number
2727 # This will be matched when the client's IP address has
2728 # more than <number> HTTP connections established.
2729
2730 acl aclname max_user_ip [-s] number
2731 # This will be matched when the user attempts to log in from more
2732 # than <number> different ip addresses. The authenticate_ip_ttl
2733 # parameter controls the timeout on the ip entries.
2734 # If -s is specified the limit is strict, denying browsing
2735 # from any further IP addresses until the ttl has expired. Without
2736 # -s Squid will just annoy the user by "randomly" denying requests.
2737 # (the counter is reset each time the limit is reached and a
2738 # request is denied)
2739 # NOTE: in acceleration mode or where there is mesh of child proxies,
2740 # clients may appear to come from multiple addresses if they are
2741 # going through proxy farms, so a limit of 1 may cause user problems.
2742
2743 acl aclname req_mime_type mime-type1 ...
2744 # regex match against the mime type of the request generated
2745 # by the client. Can be used to detect file upload or some
2746 # types HTTP tunneling requests.
2747 # NOTE: This does NOT match the reply. You cannot use this
2748 # to match the returned file type.
2749
2750 acl aclname req_header header-name [-i] any\.regex\.here
2751 # regex match against any of the known request headers. May be
2752 # thought of as a superset of "browser", "referer" and "mime-type"
2753 # ACLs.
2754
2755 acl aclname rep_mime_type mime-type1 ...
2756 # regex match against the mime type of the reply received by
2757 # squid. Can be used to detect file download or some
2758 # types HTTP tunneling requests.
2759 # NOTE: This has no effect in http_access rules. It only has
2760 # effect in rules that affect the reply data stream such as
2761 # http_reply_access.
2762
2763 acl aclname rep_header header-name [-i] any\.regex\.here
2764 # regex match against any of the known reply headers. May be
2765 # thought of as a superset of "browser", "referer" and "mime-type"
2766 # ACLs.
2767
2768 acl acl_name external class_name [arguments...]
2769 # external ACL lookup via a helper class defined by the
2770 # external_acl_type directive.
2771
2772 acl aclname user_cert attribute values...
2773 # match against attributes in a user SSL certificate
2774 # attribute is one of DN/C/O/CN/L/ST
2775
2776 acl aclname ca_cert attribute values...
2777 # match against attributes a users issuing CA SSL certificate
2778 # attribute is one of DN/C/O/CN/L/ST
2779
2780 acl aclname ext_user username ...
2781 acl aclname ext_user_regex [-i] pattern ...
2782 # string match on username returned by external acl helper
2783 # use REQUIRED to accept any non-null user name.
2784
2785 Examples:
2786 acl macaddress arp 09:00:2b:23:45:67
2787 acl myexample dst_as 1241
2788 acl password proxy_auth REQUIRED
2789 acl fileupload req_mime_type -i ^multipart/form-data$
2790 acl javascript rep_mime_type -i ^application/x-javascript$
2791
2792 NOCOMMENT_START
2793 #Recommended minimum configuration:
2794 acl all src 0.0.0.0/0.0.0.0
2795 acl manager proto cache_object
2796 acl localhost src 127.0.0.1/255.255.255.255
2797 acl to_localhost dst 127.0.0.0/8
2798 acl SSL_ports port 443
2799 acl Safe_ports port 80 # http
2800 acl Safe_ports port 21 # ftp
2801 acl Safe_ports port 443 # https
2802 acl Safe_ports port 70 # gopher
2803 acl Safe_ports port 210 # wais
2804 acl Safe_ports port 1025-65535 # unregistered ports
2805 acl Safe_ports port 280 # http-mgmt
2806 acl Safe_ports port 488 # gss-http
2807 acl Safe_ports port 591 # filemaker
2808 acl Safe_ports port 777 # multiling http
2809 acl CONNECT method CONNECT
2810 NOCOMMENT_END
2811 DOC_END
2812
2813 NAME: http_access
2814 TYPE: acl_access
2815 LOC: Config.accessList.http
2816 DEFAULT: none
2817 DEFAULT_IF_NONE: deny all
2818 DOC_START
2819 Allowing or Denying access based on defined access lists
2820
2821 Access to the HTTP port:
2822 http_access allow|deny [!]aclname ...
2823
2824 NOTE on default values:
2825
2826 If there are no "access" lines present, the default is to deny
2827 the request.
2828
2829 If none of the "access" lines cause a match, the default is the
2830 opposite of the last line in the list. If the last line was
2831 deny, the default is allow. Conversely, if the last line
2832 is allow, the default will be deny. For these reasons, it is a
2833 good idea to have an "deny all" or "allow all" entry at the end
2834 of your access lists to avoid potential confusion.
2835
2836 NOCOMMENT_START
2837 #Recommended minimum configuration:
2838 #
2839 # Only allow cachemgr access from localhost
2840 http_access allow manager localhost
2841 http_access deny manager
2842 # Deny requests to unknown ports
2843 http_access deny !Safe_ports
2844 # Deny CONNECT to other than SSL ports
2845 http_access deny CONNECT !SSL_ports
2846 #
2847 # We strongly recommend the following be uncommented to protect innocent
2848 # web applications running on the proxy server who think the only
2849 # one who can access services on "localhost" is a local user
2850 #http_access deny to_localhost
2851 #
2852 # INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS
2853
2854 # Example rule allowing access from your local networks. Adapt
2855 # to list your (internal) IP networks from where browsing should
2856 # be allowed
2857 #acl our_networks src 192.168.1.0/24 192.168.2.0/24
2858 #http_access allow our_networks
2859
2860 # And finally deny all other access to this proxy
2861 http_access deny all
2862 NOCOMMENT_END
2863 DOC_END
2864
2865 NAME: http_reply_access
2866 TYPE: acl_access
2867 LOC: Config.accessList.reply
2868 DEFAULT: none
2869 DEFAULT_IF_NONE: allow all
2870 DOC_START
2871 Allow replies to client requests. This is complementary to http_access.
2872
2873 http_reply_access allow|deny [!] aclname ...
2874
2875 NOTE: if there are no access lines present, the default is to allow
2876 all replies
2877
2878 If none of the access lines cause a match the opposite of the
2879 last line will apply. Thus it is good practice to end the rules
2880 with an "allow all" or "deny all" entry.
2881 DOC_END
2882
2883 NAME: icp_access
2884 TYPE: acl_access
2885 LOC: Config.accessList.icp
2886 DEFAULT: none
2887 DEFAULT_IF_NONE: deny all
2888 DOC_START
2889 Allowing or Denying access to the ICP port based on defined
2890 access lists
2891
2892 icp_access allow|deny [!]aclname ...
2893
2894 See http_access for details
2895
2896 NOCOMMENT_START
2897 #Allow ICP queries from everyone
2898 icp_access allow all
2899 NOCOMMENT_END
2900 DOC_END
2901
2902 NAME: htcp_access
2903 IFDEF: USE_HTCP
2904 TYPE: acl_access
2905 LOC: Config.accessList.htcp
2906 DEFAULT: none
2907 DEFAULT_IF_NONE: deny all
2908 DOC_START
2909 Allowing or Denying access to the HTCP port based on defined
2910 access lists
2911
2912 htcp_access allow|deny [!]aclname ...
2913
2914 See http_access for details
2915
2916 #Allow HTCP queries from everyone
2917 htcp_access allow all
2918 DOC_END
2919
2920 NAME: htcp_clr_access
2921 IFDEF: USE_HTCP
2922 TYPE: acl_access
2923 LOC: Config.accessList.htcp_clr
2924 DEFAULT: none
2925 DEFAULT_IF_NONE: deny all
2926 DOC_START
2927 Allowing or Denying access to purge content using HTCP based
2928 on defined access lists
2929
2930 htcp_clr_access allow|deny [!]aclname ...
2931
2932 See http_access for details
2933
2934 #Allow HTCP CLR requests from trusted peers
2935 acl htcp_clr_peer src 172.16.1.2
2936 htcp_clr_access allow htcp_clr_peer
2937 DOC_END
2938
2939 NAME: miss_access
2940 TYPE: acl_access
2941 LOC: Config.accessList.miss
2942 DEFAULT: none
2943 DOC_START
2944 Use to force your neighbors to use you as a sibling instead of
2945 a parent. For example:
2946
2947 acl localclients src 172.16.0.0/16
2948 miss_access allow localclients
2949 miss_access deny !localclients
2950
2951 This means only your local clients are allowed to fetch
2952 MISSES and all other clients can only fetch HITS.
2953
2954 By default, allow all clients who passed the http_access rules
2955 to fetch MISSES from us.
2956
2957 NOCOMMENT_START
2958 #Default setting:
2959 # miss_access allow all
2960 NOCOMMENT_END
2961 DOC_END
2962
2963 NAME: cache_peer_access
2964 TYPE: peer_access
2965 DEFAULT: none
2966 LOC: none
2967 DOC_START
2968 Similar to 'cache_peer_domain' but provides more flexibility by
2969 using ACL elements.
2970
2971 cache_peer_access cache-host allow|deny [!]aclname ...
2972
2973 The syntax is identical to 'http_access' and the other lists of
2974 ACL elements. See the comments for 'http_access' below, or
2975 the Squid FAQ (http://www.squid-cache.org/FAQ/FAQ-10.html).
2976 DOC_END
2977
2978 NAME: ident_lookup_access
2979 TYPE: acl_access
2980 IFDEF: USE_IDENT
2981 DEFAULT: none
2982 DEFAULT_IF_NONE: deny all
2983 LOC: Config.accessList.identLookup
2984 DOC_START
2985 A list of ACL elements which, if matched, cause an ident
2986 (RFC 931) lookup to be performed for this request. For
2987 example, you might choose to always perform ident lookups
2988 for your main multi-user Unix boxes, but not for your Macs
2989 and PCs. By default, ident lookups are not performed for
2990 any requests.
2991
2992 To enable ident lookups for specific client addresses, you
2993 can follow this example:
2994
2995 acl ident_aware_hosts src 198.168.1.0/255.255.255.0
2996 ident_lookup_access allow ident_aware_hosts
2997 ident_lookup_access deny all
2998
2999 Only src type ACL checks are fully supported. A src_domain
3000 ACL might work at times, but it will not always provide
3001 the correct result.
3002 DOC_END
3003
3004 NAME: tcp_outgoing_tos tcp_outgoing_ds tcp_outgoing_dscp
3005 TYPE: acl_tos
3006 DEFAULT: none
3007 LOC: Config.accessList.outgoing_tos
3008 DOC_START
3009 Allows you to select a TOS/Diffserv value to mark outgoing
3010 connections with, based on the username or source address
3011 making the request.
3012
3013 tcp_outgoing_tos ds-field [!]aclname ...
3014
3015 Example where normal_service_net uses the TOS value 0x00
3016 and normal_service_net uses 0x20
3017
3018 acl normal_service_net src 10.0.0.0/255.255.255.0
3019 acl good_service_net src 10.0.1.0/255.255.255.0
3020 tcp_outgoing_tos 0x00 normal_service_net 0x00
3021 tcp_outgoing_tos 0x20 good_service_net
3022
3023 TOS/DSCP values really only have local significance - so you should
3024 know what you're specifying. For more information, see RFC2474 and
3025 RFC3260.
3026
3027 The TOS/DSCP byte must be exactly that - a octet value 0 - 255, or
3028 "default" to use whatever default your host has. Note that in
3029 practice often only values 0 - 63 is usable as the two highest bits
3030 have been redefined for use by ECN (RFC3168).
3031
3032 Processing proceeds in the order specified, and stops at first fully
3033 matching line.
3034
3035 Note: The use of this directive using client dependent ACLs is
3036 incompatible with the use of server side persistent connections. To
3037 ensure correct results it is best to set server_persisten_connections
3038 to off when using this directive in such configurations.
3039 DOC_END
3040
3041 NAME: clientside_tos
3042 TYPE: acl_tos
3043 DEFAULT: none
3044 LOC: Config.accessList.clientside_tos
3045 DOC_START
3046 Allows you to select a TOS/Diffserv value to mark client-side
3047 connections with, based on the username or source address
3048 making the request.
3049 DOC_END
3050
3051 NAME: tcp_outgoing_address
3052 TYPE: acl_address
3053 DEFAULT: none
3054 LOC: Config.accessList.outgoing_address
3055 DOC_START
3056 Allows you to map requests to different outgoing IP addresses
3057 based on the username or source address of the user making
3058 the request.
3059
3060 tcp_outgoing_address ipaddr [[!]aclname] ...
3061
3062 Example where requests from 10.0.0.0/24 will be forwarded
3063 with source address 10.1.0.1, 10.0.2.0/24 forwarded with
3064 source address 10.1.0.2 and the rest will be forwarded with
3065 source address 10.1.0.3.
3066
3067 acl normal_service_net src 10.0.0.0/255.255.255.0
3068 acl good_service_net src 10.0.1.0/255.255.255.0
3069 tcp_outgoing_address 10.0.0.1 normal_service_net
3070 tcp_outgoing_address 10.0.0.2 good_service_net
3071 tcp_outgoing_address 10.0.0.3
3072
3073 Processing proceeds in the order specified, and stops at first fully
3074 matching line.
3075
3076 Note: The use of this directive using client dependent ACLs is
3077 incompatible with the use of server side persistent connections. To
3078 ensure correct results it is best to set server_persistent_connections
3079 to off when using this directive in such configurations.
3080 DOC_END
3081
3082 NAME: reply_header_max_size
3083 COMMENT: (KB)
3084 TYPE: b_size_t
3085 DEFAULT: 20 KB
3086 LOC: Config.maxReplyHeaderSize
3087 DOC_START
3088 This specifies the maximum size for HTTP headers in a reply.
3089 Reply headers are usually relatively small (about 512 bytes).
3090 Placing a limit on the reply header size will catch certain
3091 bugs (for example with persistent connections) and possibly
3092 buffer-overflow or denial-of-service attacks.
3093 DOC_END
3094
3095 NAME: reply_body_max_size
3096 COMMENT: size [acl acl...]
3097 TYPE: acl_b_size_t
3098 DEFAULT: none
3099 LOC: Config.ReplyBodySize
3100 DOC_START
3101 This option specifies the maximum size of a reply body. It can be
3102 used to prevent users from downloading very large files, such as
3103 MP3's and movies. When the reply headers are received, the
3104 reply_body_max_size lines are processed, and the first line where
3105 all (if any) listed ACLs are true is used as the maximum body size
3106 for this reply.
3107
3108 This size is checked twice. First when we get the reply headers,
3109 we check the content-length value. If the content length value exists
3110 and is larger than the allowed size, the request is denied and the
3111 user receives an error message that says "the request or reply
3112 is too large." If there is no content-length, and the reply
3113 size exceeds this limit, the client's connection is just closed
3114 and they will receive a partial reply.
3115
3116 WARNING: downstream caches probably can not detect a partial reply
3117 if there is no content-length header, so they will cache
3118 partial responses and give them out as hits. You should NOT
3119 use this option if you have downstream caches.
3120
3121 WARNING: A maximum size smaller than the size of squid's error messages
3122 will cause an infinite loop and crash squid. Ensure that the smallest
3123 non-zero value you use is greater that the maximum header size plus
3124 the size of your largest error page.
3125
3126 If you set this parameter none (the default), there will be
3127 no limit imposed.
3128 DOC_END
3129
3130 NAME: log_access
3131 TYPE: acl_access
3132 LOC: Config.accessList.log
3133 DEFAULT: none
3134 COMMENT: allow|deny acl acl...
3135 DOC_START
3136 This options allows you to control which requests gets logged
3137 to access.log (see access_log directive). Requests denied for
3138 logging will also not be accounted for in performance counters.
3139 DOC_END
3140
3141 COMMENT_START
3142 ADMINISTRATIVE PARAMETERS
3143 -----------------------------------------------------------------------------
3144 COMMENT_END
3145
3146 NAME: cache_mgr
3147 TYPE: string
3148 DEFAULT: webmaster
3149 LOC: Config.adminEmail
3150 DOC_START
3151 Email-address of local cache manager who will receive
3152 mail if the cache dies. The default is "webmaster."
3153 DOC_END
3154
3155 NAME: mail_from
3156 TYPE: string
3157 DEFAULT: none
3158 LOC: Config.EmailFrom
3159 DOC_START
3160 From: email-address for mail sent when the cache dies.
3161 The default is to use 'appname@unique_hostname'.
3162 Default appname value is "squid", can be changed into
3163 src/globals.h before building squid.
3164 DOC_END
3165
3166 NAME: mail_program
3167 TYPE: eol
3168 DEFAULT: mail
3169 LOC: Config.EmailProgram
3170 DOC_START
3171 Email program used to send mail if the cache dies.
3172 The default is "mail". The specified program must complain
3173 with the standard Unix mail syntax:
3174 mail_program recipient < mailfile
3175 Optional command line options can be specified.
3176 DOC_END
3177
3178 NAME: cache_effective_user
3179 TYPE: string
3180 DEFAULT: nobody
3181 LOC: Config.effectiveUser
3182 DOC_START
3183 If you start Squid as root, it will change its effective/real
3184 UID/GID to the user specified below. The default is to change
3185 to UID to nobody. If you define cache_effective_user, but not
3186 cache_effective_group, Squid sets the GID to the effective
3187 user's default group ID (taken from the password file) and
3188 supplementary group list from the from groups membership of
3189 cache_effective_user.
3190 DOC_END
3191
3192 NAME: cache_effective_group
3193 TYPE: string
3194 DEFAULT: none
3195 LOC: Config.effectiveGroup
3196 DOC_START
3197 If you want Squid to run with a specific GID regardless of
3198 the group memberships of the effective user then set this
3199 to the group (or GID) you want Squid to run as. When set
3200 all other group privileges of the effective user is ignored
3201 and only this GID is effective. If Squid is not started as
3202 root the user starting Squid must be member of the specified
3203 group.
3204 DOC_END
3205
3206 NAME: httpd_suppress_version_string
3207 COMMENT: on|off
3208 TYPE: onoff
3209 DEFAULT: off
3210 LOC: Config.onoff.httpd_suppress_version_string
3211 DOC_START
3212 Suppress Squid version string info in HTTP headers and HTML error pages.
3213 DOC_END
3214
3215 NAME: visible_hostname
3216 TYPE: string
3217 LOC: Config.visibleHostname
3218 DEFAULT: none
3219 DOC_START
3220 If you want to present a special hostname in error messages, etc,
3221 define this. Otherwise, the return value of gethostname()
3222 will be used. If you have multiple caches in a cluster and
3223 get errors about IP-forwarding you must set them to have individual
3224 names with this setting.
3225 DOC_END
3226
3227 NAME: unique_hostname
3228 TYPE: string
3229 LOC: Config.uniqueHostname
3230 DEFAULT: none
3231 DOC_START
3232 If you want to have multiple machines with the same
3233 'visible_hostname' you must give each machine a different
3234 'unique_hostname' so forwarding loops can be detected.
3235 DOC_END
3236
3237 NAME: hostname_aliases
3238 TYPE: wordlist
3239 LOC: Config.hostnameAliases
3240 DEFAULT: none
3241 DOC_START
3242 A list of other DNS names your cache has.
3243 DOC_END
3244
3245 COMMENT_START
3246 OPTIONS FOR THE CACHE REGISTRATION SERVICE
3247 -----------------------------------------------------------------------------
3248
3249 This section contains parameters for the (optional) cache
3250 announcement service. This service is provided to help
3251 cache administrators locate one another in order to join or
3252 create cache hierarchies.
3253
3254 An 'announcement' message is sent (via UDP) to the registration
3255 service by Squid. By default, the announcement message is NOT
3256 SENT unless you enable it with 'announce_period' below.
3257
3258 The announcement message includes your hostname, plus the
3259 following information from this configuration file:
3260
3261 http_port
3262 icp_port
3263 cache_mgr
3264
3265 All current information is processed regularly and made
3266 available on the Web at http://www.ircache.net/Cache/Tracker/.
3267 COMMENT_END
3268
3269 NAME: announce_period
3270 TYPE: time_t
3271 LOC: Config.Announce.period
3272 DEFAULT: 0
3273 DOC_START
3274 This is how frequently to send cache announcements. The
3275 default is `0' which disables sending the announcement
3276 messages.
3277
3278 To enable announcing your cache, just uncomment the line
3279 below.
3280
3281 NOCOMMENT_START
3282 #To enable announcing your cache, just uncomment the line below.
3283 #announce_period 1 day
3284 NOCOMMENT_END
3285 DOC_END
3286
3287 NAME: announce_host
3288 TYPE: string
3289 DEFAULT: tracker.ircache.net
3290 LOC: Config.Announce.host
3291 DOC_NONE
3292
3293 NAME: announce_file
3294 TYPE: string
3295 DEFAULT: none
3296 LOC: Config.Announce.file
3297 DOC_NONE
3298
3299 NAME: announce_port
3300 TYPE: ushort
3301 DEFAULT: 3131
3302 LOC: Config.Announce.port
3303 DOC_START
3304 announce_host and announce_port set the hostname and port
3305 number where the registration message will be sent.
3306
3307 Hostname will default to 'tracker.ircache.net' and port will
3308 default default to 3131. If the 'filename' argument is given,
3309 the contents of that file will be included in the announce
3310 message.
3311 DOC_END
3312
3313 COMMENT_START
3314 HTTPD-ACCELERATOR OPTIONS
3315 -----------------------------------------------------------------------------
3316 COMMENT_END
3317
3318 NAME: httpd_accel_surrogate_id
3319 IFDEF: ESI
3320 TYPE: string
3321 LOC: Config.Accel.surrogate_id
3322 DEFAULT: unset-id
3323 DOC_START
3324 Surrogates (http://www.esi.org/architecture_spec_1.0.html)
3325 need an identification token to allow control targeting. Because
3326 a farm of surrogates may all perform the same tasks, they may share
3327 an identification token.
3328 DOC_END
3329
3330 NAME: http_accel_surrogate_remote
3331 IFDEF: ESI
3332 COMMENT: on|off
3333 TYPE: onoff
3334 DEFAULT: off
3335 LOC: Config.onoff.surrogate_is_remote
3336 DOC_START
3337 Remote surrogates (such as those in a CDN) honour Surrogate-Control: no-store-remote.
3338 Set this to on to have squid behave as a remote surrogate.
3339 DOC_END
3340
3341 NAME: esi_parser
3342 IFDEF: ESI
3343 COMMENT: libxml2|expat|custom
3344 TYPE: string
3345 LOC: ESIParser::Type
3346 DEFAULT: custom
3347 DOC_START
3348 ESI markup is not strictly XML compatible. The custom ESI parser
3349 will give higher performance, but cannot handle non ASCII character
3350 encodings.
3351 DOC_END
3352
3353 COMMENT_START
3354 DELAY POOL PARAMETERS
3355 -----------------------------------------------------------------------------
3356 COMMENT_END
3357
3358 NAME: delay_pools
3359 TYPE: delay_pool_count
3360 DEFAULT: 0
3361 IFDEF: DELAY_POOLS
3362 LOC: Config.Delay
3363 DOC_START
3364 This represents the number of delay pools to be used. For example,
3365 if you have one class 2 delay pool and one class 3 delays pool, you
3366 have a total of 2 delay pools.
3367 DOC_END
3368
3369 NAME: delay_class
3370 TYPE: delay_pool_class
3371 DEFAULT: none
3372 IFDEF: DELAY_POOLS
3373 LOC: Config.Delay
3374 DOC_START
3375 This defines the class of each delay pool. There must be exactly one
3376 delay_class line for each delay pool. For example, to define two
3377 delay pools, one of class 2 and one of class 3, the settings above
3378 and here would be:
3379
3380 Example:
3381 delay_pools 4 # 4 delay pools
3382 delay_class 1 2 # pool 1 is a class 2 pool
3383 delay_class 2 3 # pool 2 is a class 3 pool
3384 delay_class 3 4 # pool 3 is a class 4 pool
3385 delay_class 4 5 # pool 4 is a class 5 pool
3386
3387 The delay pool classes are:
3388
3389 class 1 Everything is limited by a single aggregate
3390 bucket.
3391
3392 class 2 Everything is limited by a single aggregate
3393 bucket as well as an "individual" bucket chosen
3394 from bits 25 through 32 of the IP address.
3395
3396 class 3 Everything is limited by a single aggregate
3397 bucket as well as a "network" bucket chosen
3398 from bits 17 through 24 of the IP address and a
3399 "individual" bucket chosen from bits 17 through
3400 32 of the IP address.
3401
3402 class 4 Everything in a class 3 delay pool, with an
3403 additional limit on a per user basis. This
3404 only takes effect if the username is established
3405 in advance - by forcing authentication in your
3406 http_access rules.
3407
3408 class 5 Requests are grouped according their tag (see
3409 external_acl's tag= reply).
3410
3411 NOTE: If an IP address is a.b.c.d
3412 -> bits 25 through 32 are "d"
3413 -> bits 17 through 24 are "c"
3414 -> bits 17 through 32 are "c * 256 + d"
3415 DOC_END
3416
3417 NAME: delay_access
3418 TYPE: delay_pool_access
3419 DEFAULT: none
3420 IFDEF: DELAY_POOLS
3421 LOC: Config.Delay
3422 DOC_START
3423 This is used to determine which delay pool a request falls into.
3424
3425 delay_access is sorted per pool and the matching starts with pool 1,
3426 then pool 2, ..., and finally pool N. The first delay pool where the
3427 request is allowed is selected for the request. If it does not allow
3428 the request to any pool then the request is not delayed (default).
3429
3430 For example, if you want some_big_clients in delay
3431 pool 1 and lotsa_little_clients in delay pool 2:
3432
3433 Example:
3434 delay_access 1 allow some_big_clients
3435 delay_access 1 deny all
3436 delay_access 2 allow lotsa_little_clients
3437 delay_access 2 deny all
3438 delay_access 3 allow authenticated_clients
3439 DOC_END
3440
3441 NAME: delay_parameters
3442 TYPE: delay_pool_rates
3443 DEFAULT: none
3444 IFDEF: DELAY_POOLS
3445 LOC: Config.Delay
3446 DOC_START
3447 This defines the parameters for a delay pool. Each delay pool has
3448 a number of "buckets" associated with it, as explained in the
3449 description of delay_class. For a class 1 delay pool, the syntax is:
3450
3451 delay_parameters pool aggregate
3452
3453 For a class 2 delay pool:
3454
3455 delay_parameters pool aggregate individual
3456
3457 For a class 3 delay pool:
3458
3459 delay_parameters pool aggregate network individual
3460
3461 For a class 4 delay pool:
3462
3463 delay_parameters pool aggregate network individual user
3464
3465 For a class 5 delay pool:
3466
3467 delay_parameters pool tag
3468
3469 The variables here are:
3470
3471 pool a pool number - ie, a number between 1 and the
3472 number specified in delay_pools as used in
3473 delay_class lines.
3474
3475 aggregate the "delay parameters" for the aggregate bucket
3476 (class 1, 2, 3).
3477
3478 individual the "delay parameters" for the individual
3479 buckets (class 2, 3).
3480
3481 network the "delay parameters" for the network buckets
3482 (class 3).
3483
3484 user the delay parameters for the user buckets
3485 (class 4).
3486
3487 tag the delay parameters for the tag buckets
3488 (class 5).
3489
3490 A pair of delay parameters is written restore/maximum, where restore is
3491 the number of bytes (not bits - modem and network speeds are usually
3492 quoted in bits) per second placed into the bucket, and maximum is the
3493 maximum number of bytes which can be in the bucket at any time.
3494
3495 For example, if delay pool number 1 is a class 2 delay pool as in the
3496 above example, and is being used to strictly limit each host to 64kbps
3497 (plus overheads), with no overall limit, the line is:
3498
3499 delay_parameters 1 -1/-1 8000/8000
3500
3501 Note that the figure -1 is used to represent "unlimited".
3502
3503 And, if delay pool number 2 is a class 3 delay pool as in the above
3504 example, and you want to limit it to a total of 256kbps (strict limit)
3505 with each 8-bit network permitted 64kbps (strict limit) and each
3506 individual host permitted 4800bps with a bucket maximum size of 64kb
3507 to permit a decent web page to be downloaded at a decent speed
3508 (if the network is not being limited due to overuse) but slow down
3509 large downloads more significantly:
3510
3511 delay_parameters 2 32000/32000 8000/8000 600/8000
3512
3513 There must be one delay_parameters line for each delay pool.
3514
3515 Finally, for a class 4 delay pool as in the example - each user will
3516 be limited to 128Kb no matter how many workstations they are logged into.:
3517
3518 delay_parameters 4 32000/32000 8000/8000 600/64000 16000/16000
3519 DOC_END
3520
3521 NAME: delay_initial_bucket_level
3522 COMMENT: (percent, 0-100)
3523 TYPE: ushort
3524 DEFAULT: 50
3525 IFDEF: DELAY_POOLS
3526 LOC: Config.Delay.initial
3527 DOC_START
3528 The initial bucket percentage is used to determine how much is put
3529 in each bucket when squid starts, is reconfigured, or first notices
3530 a host accessing it (in class 2 and class 3, individual hosts and
3531 networks only have buckets associated with them once they have been
3532 "seen" by squid).
3533 DOC_END
3534
3535 COMMENT_START
3536 WCCPv1 AND WCCPv2 CONFIGURATION OPTIONS
3537 -----------------------------------------------------------------------------
3538 COMMENT_END
3539
3540 NAME: wccp_router
3541 TYPE: address
3542 LOC: Config.Wccp.router
3543 DEFAULT: 0.0.0.0
3544 IFDEF: USE_WCCP
3545 DOC_NONE
3546 NAME: wccp2_router
3547 TYPE: sockaddr_in_list
3548 LOC: Config.Wccp2.router
3549 DEFAULT: none
3550 IFDEF: USE_WCCPv2
3551 DOC_START
3552 Use this option to define your WCCP ``home'' router for
3553 Squid.
3554
3555 wccp_router supports a single WCCP(v1) router
3556
3557 wccp2_router supports multiple WCCPv2 routers
3558
3559 only one of the two may be used at the same time and defines
3560 which version of WCCP to use.
3561 DOC_END
3562
3563 NAME: wccp_version
3564 TYPE: int
3565 LOC: Config.Wccp.version
3566 DEFAULT: 4
3567 IFDEF: USE_WCCP
3568 DOC_START
3569 This directive is only relevant if you need to set up WCCP(v1)
3570 to some very old and end-of-life Cisco routers. In all other
3571 setups it must be left unset or at the default setting.
3572 It defines an internal version in the WCCP(v1) protocol,
3573 with version 4 being the officially documented protocol.
3574
3575 According to some users, Cisco IOS 11.2 and earlier only
3576 support WCCP version 3. If you're using that or an earlier
3577 version of IOS, you may need to change this value to 3, otherwise
3578 do not specify this parameter.
3579 DOC_END
3580
3581 NAME: wccp2_rebuild_wait
3582 TYPE: onoff
3583 LOC: Config.Wccp2.rebuildwait
3584 DEFAULT: on
3585 IFDEF: USE_WCCPv2
3586 DOC_START
3587 If this is enabled Squid will wait for the cache dir rebuild to finish
3588 before sending the first wccp2 HereIAm packet
3589 DOC_END
3590
3591 NAME: wccp2_forwarding_method
3592 TYPE: int
3593 LOC: Config.Wccp2.forwarding_method
3594 DEFAULT: 1
3595 IFDEF: USE_WCCPv2
3596 DOC_START
3597 WCCP2 allows the setting of forwarding methods between the
3598 router/switch and the cache. Valid values are as follows:
3599
3600 1 - GRE encapsulation (forward the packet in a GRE/WCCP tunnel)
3601 2 - L2 redirect (forward the packet using Layer 2/MAC rewriting)
3602
3603 Currently (as of IOS 12.4) cisco routers only support GRE.
3604 Cisco switches only support the L2 redirect assignment method.
3605 DOC_END
3606
3607 NAME: wccp2_return_method
3608 TYPE: int
3609 LOC: Config.Wccp2.return_method
3610 DEFAULT: 1
3611 IFDEF: USE_WCCPv2
3612 DOC_START
3613 WCCP2 allows the setting of return methods between the
3614 router/switch and the cache for packets that the cache
3615 decides not to handle. Valid values are as follows:
3616
3617 1 - GRE encapsulation (forward the packet in a GRE/WCCP tunnel)
3618 2 - L2 redirect (forward the packet using Layer 2/MAC rewriting)
3619
3620 Currently (as of IOS 12.4) cisco routers only support GRE.
3621 Cisco switches only support the L2 redirect assignment.
3622
3623 If the "ip wccp redirect exclude in" command has been
3624 enabled on the cache interface, then it is still safe for
3625 the proxy server to use a l2 redirect method even if this
3626 option is set to GRE.
3627 DOC_END
3628
3629 NAME: wccp2_assignment_method
3630 TYPE: int
3631 LOC: Config.Wccp2.assignment_method
3632 DEFAULT: 1
3633 IFDEF: USE_WCCPv2
3634 DOC_START
3635 WCCP2 allows the setting of methods to assign the WCCP hash
3636 Valid values are as follows:
3637
3638 1 - Hash assignment
3639 2 - Mask assignment
3640
3641 As a general rule, cisco routers support the hash assignment method
3642 and cisco switches support the mask assignment method.
3643 DOC_END
3644
3645 NAME: wccp2_service
3646 TYPE: wccp2_service
3647 LOC: Config.Wccp2.info
3648 DEFAULT: none
3649 DEFAULT_IF_NONE: standard 0
3650 IFDEF: USE_WCCPv2
3651 DOC_START
3652 WCCP2 allows for multiple traffic services. There are two
3653 types: "standard" and "dynamic". The standard type defines
3654 one service id - http (id 0). The dynamic service ids can be from
3655 51 to 255 inclusive. In order to use a dynamic service id
3656 one must define the type of traffic to be redirected; this is done
3657 using the wccp2_service_info option.
3658
3659 The "standard" type does not require a wccp2_service_info option,
3660 just specifying the service id will suffice.
3661
3662 MD5 service authentication can be enabled by adding
3663 "password=<password>" to the end of this service declaration.
3664
3665 Examples:
3666
3667 wccp2_service standard 0 # for the 'web-cache' standard service
3668 wccp2_service dynamic 80 # a dynamic service type which will be
3669 # fleshed out with subsequent options.
3670 wccp2_service standard 0 password=foo
3671
3672 DOC_END
3673
3674 NAME: wccp2_service_info
3675 TYPE: wccp2_service_info
3676 LOC: Config.Wccp2.info
3677 DEFAULT: none
3678 IFDEF: USE_WCCPv2
3679 DOC_START
3680 Dynamic WCCPv2 services require further information to define the
3681 traffic you wish to have diverted.
3682
3683 The format is:
3684
3685 wccp2_service_info <id> protocol=<protocol> flags=<flag>,<flag>..
3686 priority=<priority> ports=<port>,<port>..
3687
3688 The relevant WCCPv2 flags:
3689 + src_ip_hash, dst_ip_hash
3690 + source_port_hash, dest_port_hash
3691 + src_ip_alt_hash, dst_ip_alt_hash
3692 + src_port_alt_hash, dst_port_alt_hash
3693 + ports_source
3694
3695 The port list can be one to eight entries.
3696
3697 Example:
3698
3699 wccp2_service_info 80 protocol=tcp flags=src_ip_hash,ports_source
3700 priority=240 ports=80
3701
3702 Note: the service id must have been defined by a previous
3703 'wccp2_service dynamic <id>' entry.
3704 DOC_END
3705
3706 NAME: wccp2_weight
3707 TYPE: int
3708 LOC: Config.Wccp2.weight
3709 DEFAULT: 10000
3710 IFDEF: USE_WCCPv2
3711 DOC_START
3712 Each cache server gets assigned a set of the destination
3713 hash proportional to their weight.
3714 DOC_END
3715
3716 NAME: wccp_address
3717 TYPE: address
3718 LOC: Config.Wccp.address
3719 DEFAULT: 0.0.0.0
3720 IFDEF: USE_WCCP
3721 DOC_NONE
3722 NAME: wccp2_address
3723 TYPE: address
3724 LOC: Config.Wccp2.address
3725 DEFAULT: 0.0.0.0
3726 IFDEF: USE_WCCPv2
3727 DOC_START
3728 Use this option if you require WCCP to use a specific
3729 interface address.
3730
3731 The default behavior is to not bind to any specific address.
3732 DOC_END
3733
3734 COMMENT_START
3735 PERSISTENT CONNECTION HANDLING
3736 -----------------------------------------------------------------------------
3737
3738 Also see "pconn_timeout" in the TIMEOUTS section
3739 COMMENT_END
3740
3741 NAME: client_persistent_connections
3742 TYPE: onoff
3743 LOC: Config.onoff.client_pconns
3744 DEFAULT: on
3745 DOC_NONE
3746
3747 NAME: server_persistent_connections
3748 TYPE: onoff
3749 LOC: Config.onoff.server_pconns
3750 DEFAULT: on
3751 DOC_START
3752 Persistent connection support for clients and servers. By
3753 default, Squid uses persistent connections (when allowed)
3754 with its clients and servers. You can use these options to
3755 disable persistent connections with clients and/or servers.
3756 DOC_END
3757
3758 NAME: persistent_connection_after_error
3759 TYPE: onoff
3760 LOC: Config.onoff.error_pconns
3761 DEFAULT: off
3762 DOC_START
3763 With this directive the use of persistent connections after
3764 HTTP errors can be disabled. Useful if you have clients
3765 who fail to handle errors on persistent connections proper.
3766 DOC_END
3767
3768 NAME: detect_broken_pconn
3769 TYPE: onoff
3770 LOC: Config.onoff.detect_broken_server_pconns
3771 DEFAULT: off
3772 DOC_START
3773 Some servers have been found to incorrectly signal the use
3774 of HTTP/1.0 persistent connections even on replies not
3775 compatible, causing significant delays. This server problem
3776 has mostly been seen on redirects.
3777
3778 By enabling this directive Squid attempts to detect such
3779 broken replies and automatically assume the reply is finished
3780 after 10 seconds timeout.
3781 DOC_END
3782
3783 COMMENT_START
3784 CACHE DIGEST OPTIONS
3785 -----------------------------------------------------------------------------
3786 COMMENT_END
3787
3788 NAME: digest_generation
3789 IFDEF: USE_CACHE_DIGESTS
3790 TYPE: onoff
3791 LOC: Config.onoff.digest_generation
3792 DEFAULT: on
3793 DOC_START
3794 This controls whether the server will generate a Cache Digest
3795 of its contents. By default, Cache Digest generation is
3796 enabled if Squid is compiled with USE_CACHE_DIGESTS defined.
3797 DOC_END
3798
3799 NAME: digest_bits_per_entry
3800 IFDEF: USE_CACHE_DIGESTS
3801 TYPE: int
3802 LOC: Config.digest.bits_per_entry
3803 DEFAULT: 5
3804 DOC_START
3805 This is the number of bits of the server's Cache Digest which
3806 will be associated with the Digest entry for a given HTTP
3807 Method and URL (public key) combination. The default is 5.
3808 DOC_END
3809
3810 NAME: digest_rebuild_period
3811 IFDEF: USE_CACHE_DIGESTS
3812 COMMENT: (seconds)
3813 TYPE: time_t
3814 LOC: Config.digest.rebuild_period
3815 DEFAULT: 1 hour
3816 DOC_START
3817 This is the number of seconds between Cache Digest rebuilds.
3818 DOC_END
3819
3820 NAME: digest_rewrite_period
3821 COMMENT: (seconds)
3822 IFDEF: USE_CACHE_DIGESTS
3823 TYPE: time_t
3824 LOC: Config.digest.rewrite_period
3825 DEFAULT: 1 hour
3826 DOC_START
3827 This is the number of seconds between Cache Digest writes to
3828 disk.
3829 DOC_END
3830
3831 NAME: digest_swapout_chunk_size
3832 COMMENT: (bytes)
3833 TYPE: b_size_t
3834 IFDEF: USE_CACHE_DIGESTS
3835 LOC: Config.digest.swapout_chunk_size
3836 DEFAULT: 4096 bytes
3837 DOC_START
3838 This is the number of bytes of the Cache Digest to write to
3839 disk at a time. It defaults to 4096 bytes (4KB), the Squid
3840 default swap page.
3841 DOC_END
3842
3843 NAME: digest_rebuild_chunk_percentage
3844 COMMENT: (percent, 0-100)
3845 IFDEF: USE_CACHE_DIGESTS
3846 TYPE: int
3847 LOC: Config.digest.rebuild_chunk_percentage
3848 DEFAULT: 10
3849 DOC_START
3850 This is the percentage of the Cache Digest to be scanned at a
3851 time. By default it is set to 10% of the Cache Digest.
3852 DOC_END
3853
3854 COMMENT_START
3855 SNMP OPTIONS
3856 -----------------------------------------------------------------------------
3857 COMMENT_END
3858
3859 NAME: snmp_port
3860 TYPE: ushort
3861 LOC: Config.Port.snmp
3862 DEFAULT: 3401
3863 IFDEF: SQUID_SNMP
3864 DOC_START
3865 Squid can now serve statistics and status information via SNMP.
3866 By default it listens to port 3401 on the machine. If you don't
3867 wish to use SNMP, set this to "0".
3868 DOC_END
3869
3870 NAME: snmp_access
3871 TYPE: acl_access
3872 LOC: Config.accessList.snmp
3873 DEFAULT: none
3874 DEFAULT_IF_NONE: deny all
3875 IFDEF: SQUID_SNMP
3876 DOC_START
3877 Allowing or denying access to the SNMP port.
3878
3879 All access to the agent is denied by default.
3880 usage:
3881
3882 snmp_access allow|deny [!]aclname ...
3883
3884 Example:
3885 snmp_access allow snmppublic localhost
3886 snmp_access deny all
3887 DOC_END
3888
3889 NAME: snmp_incoming_address
3890 TYPE: address
3891 LOC: Config.Addrs.snmp_incoming
3892 DEFAULT: 0.0.0.0
3893 IFDEF: SQUID_SNMP
3894 DOC_NONE
3895 NAME: snmp_outgoing_address
3896 TYPE: address
3897 LOC: Config.Addrs.snmp_outgoing
3898 DEFAULT: 255.255.255.255
3899 IFDEF: SQUID_SNMP
3900 DOC_START
3901 Just like 'udp_incoming_address' above, but for the SNMP port.
3902
3903 snmp_incoming_address is used for the SNMP socket receiving
3904 messages from SNMP agents.
3905 snmp_outgoing_address is used for SNMP packets returned to SNMP
3906 agents.
3907
3908 The default snmp_incoming_address (0.0.0.0) is to listen on all
3909 available network interfaces.
3910
3911 If snmp_outgoing_address is set to 255.255.255.255 (the default)
3912 it will use the same socket as snmp_incoming_address. Only
3913 change this if you want to have SNMP replies sent using another
3914 address than where this Squid listens for SNMP queries.
3915
3916 NOTE, snmp_incoming_address and snmp_outgoing_address can not have
3917 the same value since they both use port 3401.
3918 DOC_END
3919
3920 COMMENT_START
3921 ICP OPTIONS
3922 -----------------------------------------------------------------------------
3923 COMMENT_END
3924
3925 NAME: icp_port udp_port
3926 TYPE: ushort
3927 DEFAULT: 0
3928 LOC: Config.Port.icp
3929 DOC_START
3930 The port number where Squid sends and receives ICP queries to
3931 and from neighbor caches. The standard UDP port for ICP is 3130.
3932 Default is disabled (0).
3933 NOCOMMENT_START
3934 icp_port @DEFAULT_ICP_PORT@
3935 NOCOMMENT_END
3936 DOC_END
3937
3938 NAME: htcp_port
3939 IFDEF: USE_HTCP
3940 TYPE: ushort
3941 DEFAULT: 4827
3942 LOC: Config.Port.htcp
3943 DOC_START
3944 The port number where Squid sends and receives HTCP queries to
3945 and from neighbor caches. Default is 4827. To disable use
3946 "0".
3947 DOC_END
3948
3949 NAME: log_icp_queries
3950 COMMENT: on|off
3951 TYPE: onoff
3952 DEFAULT: on
3953 LOC: Config.onoff.log_udp
3954 DOC_START
3955 If set, ICP queries are logged to access.log. You may wish
3956 do disable this if your ICP load is VERY high to speed things
3957 up or to simplify log analysis.
3958 DOC_END
3959
3960 NAME: udp_incoming_address
3961 TYPE: address
3962 LOC:Config.Addrs.udp_incoming
3963 DEFAULT: 0.0.0.0
3964 DOC_NONE
3965
3966 NAME: udp_outgoing_address
3967 TYPE: address
3968 LOC: Config.Addrs.udp_outgoing
3969 DEFAULT: 255.255.255.255
3970 DOC_START
3971 udp_incoming_address is used for the ICP socket receiving packets
3972 from other caches.
3973 udp_outgoing_address is used for ICP packets sent out to other
3974 caches.
3975
3976 The default behavior is to not bind to any specific address.
3977
3978 A udp_incoming_address value of 0.0.0.0 indicates Squid
3979 should listen for UDP messages on all available interfaces.
3980
3981 If udp_outgoing_address is set to 255.255.255.255 (the default)
3982 it will use the same socket as udp_incoming_address. Only
3983 change this if you want to have ICP queries sent using another
3984 address than where this Squid listens for ICP queries from other
3985 caches.
3986
3987 NOTE, udp_incoming_address and udp_outgoing_address can not
3988 have the same value since they both use port 3130.
3989 DOC_END
3990
3991 NAME: minimum_direct_hops
3992 TYPE: int
3993 DEFAULT: 4
3994 LOC: Config.minDirectHops
3995 DOC_START
3996 If using the ICMP pinging stuff, do direct fetches for sites
3997 which are no more than this many hops away.
3998 DOC_END
3999
4000 NAME: minimum_direct_rtt
4001 TYPE: int
4002 DEFAULT: 400
4003 LOC: Config.minDirectRtt
4004 DOC_START
4005 If using the ICMP pinging stuff, do direct fetches for sites
4006 which are no more than this many rtt milliseconds away.
4007 DOC_END
4008
4009 NAME: netdb_low
4010 TYPE: int
4011 DEFAULT: 900
4012 LOC: Config.Netdb.low
4013 DOC_NONE
4014
4015 NAME: netdb_high
4016 TYPE: int
4017 DEFAULT: 1000
4018 LOC: Config.Netdb.high
4019 DOC_START
4020 The low and high water marks for the ICMP measurement
4021 database. These are counts, not percents. The defaults are
4022 900 and 1000. When the high water mark is reached, database
4023 entries will be deleted until the low mark is reached.
4024 DOC_END
4025
4026 NAME: netdb_ping_period
4027 TYPE: time_t
4028 LOC: Config.Netdb.period
4029 DEFAULT: 5 minutes
4030 DOC_START
4031 The minimum period for measuring a site. There will be at
4032 least this much delay between successive pings to the same
4033 network. The default is five minutes.
4034 DOC_END
4035
4036 NAME: query_icmp
4037 COMMENT: on|off
4038 TYPE: onoff
4039 DEFAULT: off
4040 LOC: Config.onoff.query_icmp
4041 DOC_START
4042 If you want to ask your peers to include ICMP data in their ICP
4043 replies, enable this option.
4044
4045 If your peer has configured Squid (during compilation) with
4046 '--enable-icmp' that peer will send ICMP pings to origin server
4047 sites of the URLs it receives. If you enable this option the
4048 ICP replies from that peer will include the ICMP data (if available).
4049 Then, when choosing a parent cache, Squid will choose the parent with
4050 the minimal RTT to the origin server. When this happens, the
4051 hierarchy field of the access.log will be
4052 "CLOSEST_PARENT_MISS". This option is off by default.
4053 DOC_END
4054
4055 NAME: test_reachability
4056 COMMENT: on|off
4057 TYPE: onoff
4058 DEFAULT: off
4059 LOC: Config.onoff.test_reachability
4060 DOC_START
4061 When this is 'on', ICP MISS replies will be ICP_MISS_NOFETCH
4062 instead of ICP_MISS if the target host is NOT in the ICMP
4063 database, or has a zero RTT.
4064 DOC_END
4065
4066 NAME: icp_query_timeout
4067 COMMENT: (msec)
4068 DEFAULT: 0
4069 TYPE: int
4070 LOC: Config.Timeout.icp_query
4071 DOC_START
4072 Normally Squid will automatically determine an optimal ICP
4073 query timeout value based on the round-trip-time of recent ICP
4074 queries. If you want to override the value determined by
4075 Squid, set this 'icp_query_timeout' to a non-zero value. This
4076 value is specified in MILLISECONDS, so, to use a 2-second
4077 timeout (the old default), you would write:
4078
4079 icp_query_timeout 2000
4080 DOC_END
4081
4082 NAME: maximum_icp_query_timeout
4083 COMMENT: (msec)
4084 DEFAULT: 2000
4085 TYPE: int
4086 LOC: Config.Timeout.icp_query_max
4087 DOC_START
4088 Normally the ICP query timeout is determined dynamically. But
4089 sometimes it can lead to very large values (say 5 seconds).
4090 Use this option to put an upper limit on the dynamic timeout
4091 value. Do NOT use this option to always use a fixed (instead
4092 of a dynamic) timeout value. To set a fixed timeout see the
4093 'icp_query_timeout' directive.
4094 DOC_END
4095
4096 NAME: minimum_icp_query_timeout
4097 COMMENT: (msec)
4098 DEFAULT: 5
4099 TYPE: int
4100 LOC: Config.Timeout.icp_query_min
4101 DOC_START
4102 Normally the ICP query timeout is determined dynamically. But
4103 sometimes it can lead to very small timeouts, even lower than
4104 the normal latency variance on your link due to traffic.
4105 Use this option to put an lower limit on the dynamic timeout
4106 value. Do NOT use this option to always use a fixed (instead
4107 of a dynamic) timeout value. To set a fixed timeout see the
4108 'icp_query_timeout' directive.
4109 DOC_END
4110
4111 NAME: background_ping_rate
4112 COMMENT: time-units
4113 TYPE: time_t
4114 DEFAULT: 10 seconds
4115 LOC: Config.backgroundPingRate
4116 DOC_START
4117 Controls how often the ICP pings are sent to siblings that
4118 have background-ping set.
4119 DOC_END
4120
4121 NAME: icp_hit_stale
4122 COMMENT: on|off
4123 TYPE: onoff
4124 DEFAULT: off
4125 LOC: Config.onoff.icp_hit_stale
4126 DOC_START
4127 If you want to return ICP_HIT for stale cache objects, set this
4128 option to 'on'. If you have sibling relationships with caches
4129 in other administrative domains, this should be 'off'. If you only
4130 have sibling relationships with caches under your control,
4131 it is probably okay to set this to 'on'.
4132 If set to 'on', your siblings should use the option "allow-miss"
4133 on their cache_peer lines for connecting to you.
4134 DOC_END
4135
4136 COMMENT_START
4137 MULTICAST ICP OPTIONS
4138 -----------------------------------------------------------------------------
4139 COMMENT_END
4140
4141 NAME: mcast_groups
4142 TYPE: wordlist
4143 LOC: Config.mcast_group_list
4144 DEFAULT: none
4145 DOC_START
4146 This tag specifies a list of multicast groups which your server
4147 should join to receive multicasted ICP queries.
4148
4149 NOTE! Be very careful what you put here! Be sure you
4150 understand the difference between an ICP _query_ and an ICP
4151 _reply_. This option is to be set only if you want to RECEIVE
4152 multicast queries. Do NOT set this option to SEND multicast
4153 ICP (use cache_peer for that). ICP replies are always sent via
4154 unicast, so this option does not affect whether or not you will
4155 receive replies from multicast group members.
4156
4157 You must be very careful to NOT use a multicast address which
4158 is already in use by another group of caches.
4159
4160 If you are unsure about multicast, please read the Multicast
4161 chapter in the Squid FAQ (http://www.squid-cache.org/FAQ/).
4162
4163 Usage: mcast_groups 239.128.16.128 224.0.1.20
4164
4165 By default, Squid doesn't listen on any multicast groups.
4166 DOC_END
4167
4168 NAME: mcast_miss_addr
4169 IFDEF: MULTICAST_MISS_STREAM
4170 TYPE: address
4171 LOC: Config.mcast_miss.addr
4172 DEFAULT: 255.255.255.255
4173 DOC_START
4174 If you enable this option, every "cache miss" URL will
4175 be sent out on the specified multicast address.
4176
4177 Do not enable this option unless you are are absolutely
4178 certain you understand what you are doing.
4179 DOC_END
4180
4181 NAME: mcast_miss_ttl
4182 IFDEF: MULTICAST_MISS_STREAM
4183 TYPE: ushort
4184 LOC: Config.mcast_miss.ttl
4185 DEFAULT: 16
4186 DOC_START
4187 This is the time-to-live value for packets multicasted
4188 when multicasting off cache miss URLs is enabled. By
4189 default this is set to 'site scope', i.e. 16.
4190 DOC_END
4191
4192 NAME: mcast_miss_port
4193 IFDEF: MULTICAST_MISS_STREAM
4194 TYPE: ushort
4195 LOC: Config.mcast_miss.port
4196 DEFAULT: 3135
4197 DOC_START
4198 This is the port number to be used in conjunction with
4199 'mcast_miss_addr'.
4200 DOC_END
4201
4202 NAME: mcast_miss_encode_key
4203 IFDEF: MULTICAST_MISS_STREAM
4204 TYPE: string
4205 LOC: Config.mcast_miss.encode_key
4206 DEFAULT: XXXXXXXXXXXXXXXX
4207 DOC_START
4208 The URLs that are sent in the multicast miss stream are
4209 encrypted. This is the encryption key.
4210 DOC_END
4211
4212 NAME: mcast_icp_query_timeout
4213 COMMENT: (msec)
4214 DEFAULT: 2000
4215 TYPE: int
4216 LOC: Config.Timeout.mcast_icp_query
4217 DOC_START
4218 For multicast peers, Squid regularly sends out ICP "probes" to
4219 count how many other peers are listening on the given multicast
4220 address. This value specifies how long Squid should wait to
4221 count all the replies. The default is 2000 msec, or 2
4222 seconds.
4223 DOC_END
4224
4225 COMMENT_START
4226 INTERNAL ICON OPTIONS
4227 -----------------------------------------------------------------------------
4228 COMMENT_END
4229
4230 NAME: icon_directory
4231 TYPE: string
4232 LOC: Config.icons.directory
4233 DEFAULT: @DEFAULT_ICON_DIR@
4234 DOC_START
4235 Where the icons are stored. These are normally kept in
4236 @DEFAULT_ICON_DIR@
4237 DOC_END
4238
4239 NAME: global_internal_static
4240 TYPE: onoff
4241 LOC: Config.onoff.global_internal_static
4242 DEFAULT: on
4243 DOC_START
4244 This directive controls is Squid should intercept all requests for
4245 /squid-internal-static/ no matter which host the URL is requesting
4246 (default on setting), or if nothing special should be done for
4247 such URLs (off setting). The purpose of this directive is to make
4248 icons etc work better in complex cache hierarchies where it may
4249 not always be possible for all corners in the cache mesh to reach
4250 the server generating a directory listing.
4251 DOC_END
4252
4253 NAME: short_icon_urls
4254 TYPE: onoff
4255 LOC: Config.icons.use_short_names
4256 DEFAULT: on
4257 DOC_START
4258 If this is enabled Squid will use short URLs for icons.
4259 If disabled it will revert to the old behavior of including
4260 it's own name and port in the URL.
4261
4262 If you run a complex cache hierarchy with a mix of Squid and
4263 other proxies you may need to disable this directive.
4264 DOC_END
4265
4266 COMMENT_START
4267 ERROR PAGE OPTIONS
4268 -----------------------------------------------------------------------------
4269 COMMENT_END
4270
4271 NAME: error_directory
4272 TYPE: string
4273 LOC: Config.errorDirectory
4274 DEFAULT: @DEFAULT_ERROR_DIR@
4275 DOC_START
4276 If you wish to create your own versions of the default
4277 (English) error files, either to customize them to suit your
4278 language or company copy the template English files to another
4279 directory and point this tag at them.
4280
4281 The squid developers are interested in making squid available in
4282 a wide variety of languages. If you are making translations for a
4283 langauge that Squid does not currently provide please consider
4284 contributing your translation back to the project.
4285 DOC_END
4286
4287 NAME: err_html_text
4288 TYPE: eol
4289 LOC: Config.errHtmlText
4290 DEFAULT: none
4291 DOC_START
4292 HTML text to include in error messages. Make this a "mailto"
4293 URL to your admin address, or maybe just a link to your
4294 organizations Web page.
4295
4296 To include this in your error messages, you must rewrite
4297 the error template files (found in the "errors" directory).
4298 Wherever you want the 'err_html_text' line to appear,
4299 insert a %L tag in the error template file.
4300 DOC_END
4301
4302 NAME: email_err_data
4303 COMMENT: on|off
4304 TYPE: onoff
4305 LOC: Config.onoff.emailErrData
4306 DEFAULT: on
4307 DOC_START
4308 If enabled, information about the occurred error will be
4309 included in the mailto links of the ERR pages (if %W is set)
4310 so that the email body contains the data.
4311 Syntax is <A HREF="mailto:%w%W">%w</A>
4312 DOC_END
4313
4314 NAME: deny_info
4315 TYPE: denyinfo
4316 LOC: Config.denyInfoList
4317 DEFAULT: none
4318 DOC_START
4319 Usage: deny_info err_page_name acl
4320 or deny_info http://... acl
4321 Example: deny_info ERR_CUSTOM_ACCESS_DENIED bad_guys
4322
4323 This can be used to return a ERR_ page for requests which
4324 do not pass the 'http_access' rules. Squid remembers the last
4325 acl it evaluated in http_access, and if a 'deny_info' line exists
4326 for that ACL Squid returns a corresponding error page.
4327
4328 The acl is typically the last acl on the http_access deny line which
4329 denied access. The exceptions to this rule are:
4330 - When Squid needs to request authentication credentials. It's then
4331 the first authentication related acl encountered
4332 - When none of the http_access lines matches. It's then the last
4333 acl processed on the last http_access line.
4334
4335 You may use ERR_ pages that come with Squid or create your own pages
4336 and put them into the configured errors/ directory.
4337
4338 Alternatively you can specify an error URL. The browsers will
4339 get redirected (302) to the specified URL. %s in the redirection
4340 URL will be replaced by the requested URL.
4341
4342 Alternatively you can tell Squid to reset the TCP connection
4343 by specifying TCP_RESET.
4344 DOC_END
4345
4346 COMMENT_START
4347 OPTIONS INFLUENCING REQUEST FORWARDING
4348 -----------------------------------------------------------------------------
4349 COMMENT_END
4350
4351 NAME: nonhierarchical_direct
4352 TYPE: onoff
4353 LOC: Config.onoff.nonhierarchical_direct
4354 DEFAULT: on
4355 DOC_START
4356 By default, Squid will send any non-hierarchical requests
4357 (matching hierarchy_stoplist or not cacheable request type) direct
4358 to origin servers.
4359
4360 If you set this to off, Squid will prefer to send these
4361 requests to parents.
4362
4363 Note that in most configurations, by turning this off you will only
4364 add latency to these request without any improvement in global hit
4365 ratio.
4366
4367 If you are inside an firewall see never_direct instead of
4368 this directive.
4369 DOC_END
4370
4371 NAME: prefer_direct
4372 TYPE: onoff
4373 LOC: Config.onoff.prefer_direct
4374 DEFAULT: off
4375 DOC_START
4376 Normally Squid tries to use parents for most requests. If you for some
4377 reason like it to first try going direct and only use a parent if
4378 going direct fails set this to on.
4379
4380 By combining nonhierarchical_direct off and prefer_direct on you
4381 can set up Squid to use a parent as a backup path if going direct
4382 fails.
4383
4384 Note: If you want Squid to use parents for all requests see
4385 the never_direct directive. prefer_direct only modifies how Squid
4386 acts on cacheable requests.
4387 DOC_END
4388
4389 NAME: always_direct
4390 TYPE: acl_access
4391 LOC: Config.accessList.AlwaysDirect
4392 DEFAULT: none
4393 DOC_START
4394 Usage: always_direct allow|deny [!]aclname ...
4395
4396 Here you can use ACL elements to specify requests which should
4397 ALWAYS be forwarded by Squid to the origin servers without using
4398 any peers. For example, to always directly forward requests for
4399 local servers ignoring any parents or siblings you may have use
4400 something like:
4401
4402 acl local-servers dstdomain my.domain.net
4403 always_direct allow local-servers
4404
4405 To always forward FTP requests directly, use
4406
4407 acl FTP proto FTP
4408 always_direct allow FTP
4409
4410 NOTE: There is a similar, but opposite option named
4411 'never_direct'. You need to be aware that "always_direct deny
4412 foo" is NOT the same thing as "never_direct allow foo". You
4413 may need to use a deny rule to exclude a more-specific case of
4414 some other rule. Example:
4415
4416 acl local-external dstdomain external.foo.net
4417 acl local-servers dstdomain .foo.net
4418 always_direct deny local-external
4419 always_direct allow local-servers
4420
4421 NOTE: If your goal is to make the client forward the request
4422 directly to the origin server bypassing Squid then this needs
4423 to be done in the client configuration. Squid configuration
4424 can only tell Squid how Squid should fetch the object.
4425
4426 NOTE: This directive is not related to caching. The replies
4427 is cached as usual even if you use always_direct. To not cache
4428 the replies see no_cache.
4429
4430 This option replaces some v1.1 options such as local_domain
4431 and local_ip.
4432 DOC_END
4433
4434 NAME: never_direct
4435 TYPE: acl_access
4436 LOC: Config.accessList.NeverDirect
4437 DEFAULT: none
4438 DOC_START
4439 Usage: never_direct allow|deny [!]aclname ...
4440
4441 never_direct is the opposite of always_direct. Please read
4442 the description for always_direct if you have not already.
4443
4444 With 'never_direct' you can use ACL elements to specify
4445 requests which should NEVER be forwarded directly to origin
4446 servers. For example, to force the use of a proxy for all
4447 requests, except those in your local domain use something like:
4448
4449 acl local-servers dstdomain .foo.net
4450 acl all src 0.0.0.0/0.0.0.0
4451 never_direct deny local-servers
4452 never_direct allow all
4453
4454 or if Squid is inside a firewall and there are local intranet
4455 servers inside the firewall use something like:
4456
4457 acl local-intranet dstdomain .foo.net
4458 acl local-external dstdomain external.foo.net
4459 always_direct deny local-external
4460 always_direct allow local-intranet
4461 never_direct allow all
4462
4463 This option replaces some v1.1 options such as inside_firewall
4464 and firewall_ip.
4465 DOC_END
4466
4467 COMMENT_START
4468 ADVANCED NETWORKING OPTIONS
4469 -----------------------------------------------------------------------------
4470 COMMENT_END
4471
4472 NAME: incoming_icp_average
4473 TYPE: int
4474 DEFAULT: 6
4475 LOC: Config.comm_incoming.icp_average
4476 DOC_NONE
4477
4478 NAME: incoming_http_average
4479 TYPE: int
4480 DEFAULT: 4
4481 LOC: Config.comm_incoming.http_average
4482 DOC_NONE
4483
4484 NAME: incoming_dns_average
4485 TYPE: int
4486 DEFAULT: 4
4487 LOC: Config.comm_incoming.dns_average
4488 DOC_NONE
4489
4490 NAME: min_icp_poll_cnt
4491 TYPE: int
4492 DEFAULT: 8
4493 LOC: Config.comm_incoming.icp_min_poll
4494 DOC_NONE
4495
4496 NAME: min_dns_poll_cnt
4497 TYPE: int
4498 DEFAULT: 8
4499 LOC: Config.comm_incoming.dns_min_poll
4500 DOC_NONE
4501
4502 NAME: min_http_poll_cnt
4503 TYPE: int
4504 DEFAULT: 8
4505 LOC: Config.comm_incoming.http_min_poll
4506 DOC_START
4507 Heavy voodoo here. I can't even believe you are reading this.
4508 Are you crazy? Don't even think about adjusting these unless
4509 you understand the algorithms in comm_select.c first!
4510 DOC_END
4511
4512 NAME: accept_filter
4513 IFDEF: SO_ACCEPTFILTER
4514 TYPE: string
4515 DEFAULT: none
4516 LOC: Config.accept_filter
4517 DOC_START
4518 The name of an accept(2) filter to install on Squid's
4519 listen socket(s). This feature is perhaps specific to
4520 FreeBSD and requires support in the kernel.
4521
4522 The 'httpready' filter delays delivering new connections
4523 to Squid until a full HTTP request has been recieved.
4524 See the accf_http(9) man page.
4525
4526 EXAMPLE:
4527 accept_filter httpready
4528 DOC_END
4529
4530 NAME: tcp_recv_bufsize
4531 COMMENT: (bytes)
4532 TYPE: b_size_t
4533 DEFAULT: 0 bytes
4534 LOC: Config.tcpRcvBufsz
4535 DOC_START
4536 Size of receive buffer to set for TCP sockets. Probably just
4537 as easy to change your kernel's default. Set to zero to use
4538 the default buffer size.
4539 DOC_END
4540
4541 COMMENT_START
4542 ICAP OPTIONS
4543 -----------------------------------------------------------------------------
4544 COMMENT_END
4545
4546 NAME: icap_enable
4547 TYPE: onoff
4548 IFDEF: ICAP_CLIENT
4549 COMMENT: on|off
4550 LOC: TheICAPConfig.onoff
4551 DEFAULT: off
4552 DOC_START
4553 If you want to enable the ICAP module support, set this to on.
4554 DOC_END
4555
4556 NAME: icap_connect_timeout
4557 TYPE: time_t
4558 DEFAULT: none
4559 LOC: TheICAPConfig.connect_timeout_raw
4560 IFDEF: ICAP_CLIENT
4561 DOC_START
4562 This parameter specifies how long to wait for the TCP connect to
4563 the requested ICAP server to complete before giving up and either
4564 terminating the HTTP transaction or bypassing the failure.
4565
4566 The default for optional services is peer_connect_timeout.
4567 The default for essential services is connect_timeout.
4568 If this option is explicitly set, its value applies to all services.
4569 DOC_END
4570
4571 NAME: icap_io_timeout
4572 COMMENT: time-units
4573 TYPE: time_t
4574 DEFAULT: none
4575 LOC: TheICAPConfig.io_timeout_raw
4576 IFDEF: ICAP_CLIENT
4577 DOC_START
4578 This parameter specifies how long to wait for an I/O activity on
4579 an established, active ICAP connection before giving up and
4580 either terminating the HTTP transaction or bypassing the
4581 failure.
4582
4583 The default is read_timeout.
4584 DOC_END
4585
4586 NAME: icap_service_failure_limit
4587 TYPE: int
4588 IFDEF: ICAP_CLIENT
4589 LOC: TheICAPConfig.service_failure_limit
4590 DEFAULT: 10
4591 DOC_START
4592 The limit specifies the number of failures that Squid tolerates
4593 when establishing a new TCP connection with an ICAP service. If
4594 the number of failures exceeds the limit, the ICAP service is
4595 not used for new ICAP requests until it is time to refresh its
4596 OPTIONS. The per-service failure counter is reset to zero each
4597 time Squid fetches new service OPTIONS.
4598
4599 A negative value disables the limit. Without the limit, an ICAP
4600 service will not be considered down due to connectivity failures
4601 between ICAP OPTIONS requests.
4602 DOC_END
4603
4604 NAME: icap_service_revival_delay
4605 TYPE: int
4606 IFDEF: ICAP_CLIENT
4607 LOC: TheICAPConfig.service_revival_delay
4608 DEFAULT: 180
4609 DOC_START
4610 The delay specifies the number of seconds to wait after an ICAP
4611 OPTIONS request failure before requesting the options again. The
4612 failed ICAP service is considered "down" until fresh OPTIONS are
4613 fetched.
4614
4615 The actual delay cannot be smaller than the hardcoded minimum
4616 delay of 30 seconds.
4617 DOC_END
4618
4619 NAME: icap_preview_enable
4620 TYPE: onoff
4621 IFDEF: ICAP_CLIENT
4622 COMMENT: on|off
4623 LOC: TheICAPConfig.preview_enable
4624 DEFAULT: off
4625 DOC_START
4626 Set this to 'on' if you want to enable the ICAP preview
4627 feature in Squid.
4628 DOC_END
4629
4630 NAME: icap_preview_size
4631 TYPE: int
4632 IFDEF: ICAP_CLIENT
4633 LOC: TheICAPConfig.preview_size
4634 DEFAULT: -1
4635 DOC_START
4636 The default size of preview data to be sent to the ICAP server.
4637 -1 means no preview. This value might be overwritten on a per server
4638 basis by OPTIONS requests.
4639 DOC_END
4640
4641 NAME: icap_default_options_ttl
4642 TYPE: int
4643 IFDEF: ICAP_CLIENT
4644 LOC: TheICAPConfig.default_options_ttl
4645 DEFAULT: 60
4646 DOC_START
4647 The default TTL value for ICAP OPTIONS responses that don't have
4648 an Options-TTL header.
4649 DOC_END
4650
4651 NAME: icap_persistent_connections
4652 TYPE: onoff
4653 IFDEF: ICAP_CLIENT
4654 COMMENT: on|off
4655 LOC: TheICAPConfig.reuse_connections
4656 DEFAULT: on
4657 DOC_START
4658 Whether or not Squid should use persistent connections to
4659 an ICAP server.
4660 DOC_END
4661
4662 NAME: icap_send_client_ip
4663 TYPE: onoff
4664 IFDEF: ICAP_CLIENT
4665 COMMENT: on|off
4666 LOC: TheICAPConfig.send_client_ip
4667 DEFAULT: off
4668 DOC_START
4669 This adds the header "X-Client-IP" to ICAP requests.
4670 DOC_END
4671
4672 NAME: icap_send_client_username
4673 TYPE: onoff
4674 IFDEF: ICAP_CLIENT
4675 COMMENT: on|off
4676 LOC: TheICAPConfig.send_client_username
4677 DEFAULT: off
4678 DOC_START
4679 This sends authenticated HTTP client username (if available) to
4680 the ICAP service. The username value is encoded based on the
4681 icap_client_username_encode option and is sent using the header
4682 specified by the icap_client_username_header option.
4683 DOC_END
4684
4685 NAME: icap_client_username_header
4686 TYPE: string
4687 IFDEF: ICAP_CLIENT
4688 LOC: TheICAPConfig.client_username_header
4689 DEFAULT: X-Client-Username
4690 DOC_START
4691 ICAP request header name to use for send_client_username.
4692 DOC_END
4693
4694 NAME: icap_client_username_encode
4695 TYPE: onoff
4696 IFDEF: ICAP_CLIENT
4697 COMMENT: on|off
4698 LOC: TheICAPConfig.client_username_encode
4699 DEFAULT: off
4700 DOC_START
4701 Whether to base64 encode the authenticated client username.
4702 DOC_END
4703
4704 NAME: icap_service
4705 TYPE: icap_service_type
4706 IFDEF: ICAP_CLIENT
4707 LOC: TheICAPConfig
4708 DEFAULT: none
4709 DOC_START
4710 Defines a single ICAP service
4711
4712 icap_service servicename vectoring_point bypass service_url
4713
4714 vectoring_point = reqmod_precache|reqmod_postcache|respmod_precache|respmod_postcache
4715 This specifies at which point of request processing the ICAP
4716 service should be plugged in.
4717 bypass = 1|0
4718 If set to 1 and the ICAP server cannot be reached, the request will go
4719 through without being processed by an ICAP server
4720 service_url = icap://servername:port/service
4721
4722 Note: reqmod_precache and respmod_postcache is not yet implemented
4723
4724 Example:
4725 icap_service service_1 reqmod_precache 0 icap://icap1.mydomain.net:1344/reqmod
4726 icap_service service_2 respmod_precache 0 icap://icap2.mydomain.net:1344/respmod
4727 DOC_END
4728
4729 NAME: icap_class
4730 TYPE: icap_class_type
4731 IFDEF: ICAP_CLIENT
4732 LOC: TheICAPConfig
4733 DEFAULT: none
4734 DOC_START
4735 Defines an ICAP service chain. If there are multiple services per
4736 vectoring point, they are processed in the specified order.
4737
4738 icap_class classname servicename...
4739
4740 Example:
4741 icap_class class_1 service_1 service_2
4742 icap class class_2 service_1 service_3
4743 DOC_END
4744
4745 NAME: icap_access
4746 TYPE: icap_access_type
4747 IFDEF: ICAP_CLIENT
4748 LOC: TheICAPConfig
4749 DEFAULT: none
4750 DOC_START
4751 Redirects a request through an ICAP service class, depending
4752 on given acls
4753
4754 icap_access classname allow|deny [!]aclname...
4755
4756 The icap_access statements are processed in the order they appear in
4757 this configuration file. If an access list matches, the processing stops.
4758 For an "allow" rule, the specified class is used for the request. A "deny"
4759 rule simply stops processing without using the class. You can also use the
4760 special classname "None".
4761
4762 For backward compatibility, it is also possible to use services
4763 directly here.
4764 Example:
4765 icap_access class_1 allow all
4766 DOC_END
4767
4768 COMMENT_START
4769 DNS OPTIONS
4770 -----------------------------------------------------------------------------
4771 COMMENT_END
4772
4773 NAME: check_hostnames
4774 TYPE: onoff
4775 DEFAULT: off
4776 LOC: Config.onoff.check_hostnames
4777 DOC_START
4778 For security and stability reasons Squid can check
4779 hostnames for Internet standard RFC compliance. If you want
4780 Squid to perform these checks turn this directive on.
4781 DOC_END
4782
4783 NAME: allow_underscore
4784 TYPE: onoff
4785 DEFAULT: on
4786 LOC: Config.onoff.allow_underscore
4787 DOC_START
4788 Underscore characters is not strictly allowed in Internet hostnames
4789 but nevertheless used by many sites. Set this to off if you want
4790 Squid to be strict about the standard.
4791 This check is performed only when check_hostnames is set to on.
4792 DOC_END
4793
4794 NAME: cache_dns_program
4795 TYPE: string
4796 IFDEF: USE_DNSSERVERS
4797 DEFAULT: @DEFAULT_DNSSERVER@
4798 LOC: Config.Program.dnsserver
4799 DOC_START
4800 Specify the location of the executable for dnslookup process.
4801 DOC_END
4802
4803 NAME: dns_children
4804 TYPE: int
4805 IFDEF: USE_DNSSERVERS
4806 DEFAULT: 5
4807 LOC: Config.dnsChildren
4808 DOC_START
4809 The number of processes spawn to service DNS name lookups.
4810 For heavily loaded caches on large servers, you should
4811 probably increase this value to at least 10. The maximum
4812 is 32. The default is 5.
4813
4814 You must have at least one dnsserver process.
4815 DOC_END
4816
4817 NAME: dns_retransmit_interval
4818 TYPE: time_t
4819 DEFAULT: 5 seconds
4820 LOC: Config.Timeout.idns_retransmit
4821 IFDEF: !USE_DNSSERVERS
4822 DOC_START
4823 Initial retransmit interval for DNS queries. The interval is
4824 doubled each time all configured DNS servers have been tried.
4825
4826 DOC_END
4827
4828 NAME: dns_timeout
4829 TYPE: time_t
4830 DEFAULT: 2 minutes
4831 LOC: Config.Timeout.idns_query
4832 IFDEF: !USE_DNSSERVERS
4833 DOC_START
4834 DNS Query timeout. If no response is received to a DNS query
4835 within this time all DNS servers for the queried domain
4836 are assumed to be unavailable.
4837 DOC_END
4838
4839 NAME: dns_defnames
4840 COMMENT: on|off
4841 TYPE: onoff
4842 DEFAULT: off
4843 LOC: Config.onoff.res_defnames
4844 DOC_START
4845 Normally the RES_DEFNAMES resolver option is disabled
4846 (see res_init(3)). This prevents caches in a hierarchy
4847 from interpreting single-component hostnames locally. To allow
4848 Squid to handle single-component names, enable this option.
4849 DOC_END
4850
4851 NAME: dns_nameservers
4852 TYPE: wordlist
4853 DEFAULT: none
4854 LOC: Config.dns_nameservers
4855 DOC_START
4856 Use this if you want to specify a list of DNS name servers
4857 (IP addresses) to use instead of those given in your
4858 /etc/resolv.conf file.
4859 On Windows platforms, if no value is specified here or in
4860 the /etc/resolv.conf file, the list of DNS name servers are
4861 taken from the Windows registry, both static and dynamic DHCP
4862 configurations are supported.
4863
4864 Example: dns_nameservers 10.0.0.1 192.172.0.4
4865 DOC_END
4866
4867 NAME: hosts_file
4868 TYPE: string
4869 DEFAULT: @DEFAULT_HOSTS@
4870 LOC: Config.etcHostsPath
4871 DOC_START
4872 Location of the host-local IP name-address associations
4873 database. Most Operating Systems have such a file on different
4874 default locations:
4875 - Un*X & Linux: /etc/hosts
4876 - Windows NT/2000: %SystemRoot%\system32\drivers\etc\hosts
4877 (%SystemRoot% value install default is c:\winnt)
4878 - Windows XP/2003: %SystemRoot%\system32\drivers\etc\hosts
4879 (%SystemRoot% value install default is c:\windows)
4880 - Windows 9x/Me: %windir%\hosts
4881 (%windir% value is usually c:\windows)
4882 - Cygwin: /etc/hosts
4883
4884 The file contains newline-separated definitions, in the
4885 form ip_address_in_dotted_form name [name ...] names are
4886 whitespace-separated. Lines beginning with an hash (#)
4887 character are comments.
4888
4889 The file is checked at startup and upon configuration.
4890 If set to 'none', it won't be checked.
4891 If append_domain is used, that domain will be added to
4892 domain-local (i.e. not containing any dot character) host
4893 definitions.
4894 DOC_END
4895
4896 NAME: dns_testnames
4897 TYPE: wordlist
4898 LOC: Config.dns_testname_list
4899 DEFAULT: none
4900 DEFAULT_IF_NONE: netscape.com internic.net nlanr.net microsoft.com
4901 DOC_START
4902 The DNS tests exit as soon as the first site is successfully looked up
4903
4904 This test can be disabled with the -D command line option.
4905 DOC_END
4906
4907 NAME: append_domain
4908 TYPE: string
4909 LOC: Config.appendDomain
4910 DEFAULT: none
4911 DOC_START
4912 Appends local domain name to hostnames without any dots in
4913 them. append_domain must begin with a period.
4914
4915 Be warned there are now Internet names with no dots in
4916 them using only top-domain names, so setting this may
4917 cause some Internet sites to become unavailable.
4918
4919 Example:
4920 append_domain .yourdomain.com
4921 DOC_END
4922
4923 NAME: ignore_unknown_nameservers
4924 TYPE: onoff
4925 LOC: Config.onoff.ignore_unknown_nameservers
4926 DEFAULT: on
4927 DOC_START
4928 By default Squid checks that DNS responses are received
4929 from the same IP addresses they are sent to. If they
4930 don't match, Squid ignores the response and writes a warning
4931 message to cache.log. You can allow responses from unknown
4932 nameservers by setting this option to 'off'.
4933 DOC_END
4934
4935 NAME: ipcache_size
4936 COMMENT: (number of entries)
4937 TYPE: int
4938 DEFAULT: 1024
4939 LOC: Config.ipcache.size
4940 DOC_NONE
4941
4942 NAME: ipcache_low
4943 COMMENT: (percent)
4944 TYPE: int
4945 DEFAULT: 90
4946 LOC: Config.ipcache.low
4947 DOC_NONE
4948
4949 NAME: ipcache_high
4950 COMMENT: (percent)
4951 TYPE: int
4952 DEFAULT: 95
4953 LOC: Config.ipcache.high
4954 DOC_START
4955 The size, low-, and high-water marks for the IP cache.
4956 DOC_END
4957
4958 NAME: fqdncache_size
4959 COMMENT: (number of entries)
4960 TYPE: int
4961 DEFAULT: 1024
4962 LOC: Config.fqdncache.size
4963 DOC_START
4964 Maximum number of FQDN cache entries.
4965 DOC_END
4966
4967 COMMENT_START
4968 MISCELLANEOUS
4969 -----------------------------------------------------------------------------
4970 COMMENT_END
4971
4972 NAME: memory_pools
4973 COMMENT: on|off
4974 TYPE: onoff
4975 DEFAULT: on
4976 LOC: Config.onoff.mem_pools
4977 DOC_START
4978 If set, Squid will keep pools of allocated (but unused) memory
4979 available for future use. If memory is a premium on your
4980 system and you believe your malloc library outperforms Squid
4981 routines, disable this.
4982 DOC_END
4983
4984 NAME: memory_pools_limit
4985 COMMENT: (bytes)
4986 TYPE: b_size_t
4987 DEFAULT: 5 MB
4988 LOC: Config.MemPools.limit
4989 DOC_START
4990 Used only with memory_pools on:
4991 memory_pools_limit 50 MB
4992
4993 If set to a non-zero value, Squid will keep at most the specified
4994 limit of allocated (but unused) memory in memory pools. All free()
4995 requests that exceed this limit will be handled by your malloc
4996 library. Squid does not pre-allocate any memory, just safe-keeps
4997 objects that otherwise would be free()d. Thus, it is safe to set
4998 memory_pools_limit to a reasonably high value even if your
4999 configuration will use less memory.
5000
5001 If set to zero, Squid will keep all memory it can. That is, there
5002 will be no limit on the total amount of memory used for safe-keeping.
5003
5004 To disable memory allocation optimization, do not set
5005 memory_pools_limit to 0. Set memory_pools to "off" instead.
5006
5007 An overhead for maintaining memory pools is not taken into account
5008 when the limit is checked. This overhead is close to four bytes per
5009 object kept. However, pools may actually _save_ memory because of
5010 reduced memory thrashing in your malloc library.
5011 DOC_END
5012
5013 NAME: forwarded_for
5014 COMMENT: on|off
5015 TYPE: onoff
5016 DEFAULT: on
5017 LOC: opt_forwarded_for
5018 DOC_START
5019 If set, Squid will include your system's IP address or name
5020 in the HTTP requests it forwards. By default it looks like
5021 this:
5022
5023 X-Forwarded-For: 192.1.2.3
5024
5025 If you disable this, it will appear as
5026
5027 X-Forwarded-For: unknown
5028 DOC_END
5029
5030 NAME: cachemgr_passwd
5031 TYPE: cachemgrpasswd
5032 DEFAULT: none
5033 LOC: Config.passwd_list
5034 DOC_START
5035 Specify passwords for cachemgr operations.
5036
5037 Usage: cachemgr_passwd password action action ...
5038
5039 Some valid actions are (see cache manager menu for a full list):
5040 5min
5041 60min
5042 asndb
5043 authenticator
5044 cbdata
5045 client_list
5046 comm_incoming
5047 config *
5048 counters
5049 delay
5050 digest_stats
5051 dns
5052 events
5053 filedescriptors
5054 fqdncache
5055 histograms
5056 http_headers
5057 info
5058 io
5059 ipcache
5060 mem
5061 menu
5062 netdb
5063 non_peers
5064 objects
5065 offline_toggle *
5066 pconn
5067 peer_select
5068 redirector
5069 refresh
5070 server_list
5071 shutdown *
5072 store_digest
5073 storedir
5074 utilization
5075 via_headers
5076 vm_objects
5077
5078 * Indicates actions which will not be performed without a
5079 valid password, others can be performed if not listed here.
5080
5081 To disable an action, set the password to "disable".
5082 To allow performing an action without a password, set the
5083 password to "none".
5084
5085 Use the keyword "all" to set the same password for all actions.
5086
5087 Example:
5088 cachemgr_passwd secret shutdown
5089 cachemgr_passwd lesssssssecret info stats/objects
5090 cachemgr_passwd disable all
5091 DOC_END
5092
5093 NAME: client_db
5094 COMMENT: on|off
5095 TYPE: onoff
5096 DEFAULT: on
5097 LOC: Config.onoff.client_db
5098 DOC_START
5099 If you want to disable collecting per-client statistics,
5100 turn off client_db here.
5101 DOC_END
5102
5103 NAME: refresh_all_ims
5104 COMMENT: on|off
5105 TYPE: onoff
5106 DEFAULT: off
5107 LOC: Config.onoff.refresh_all_ims
5108 DOC_START
5109 When you enable this option, squid will always check
5110 the origin server for an update when a client sends an
5111 If-Modified-Since request. Many browsers use IMS
5112 requests when the user requests a reload, and this
5113 ensures those clients receive the latest version.
5114
5115 By default (off), squid may return a Not Modified response
5116 based on the age of the cached version.
5117 DOC_END
5118
5119 NAME: reload_into_ims
5120 IFDEF: HTTP_VIOLATIONS
5121 COMMENT: on|off
5122 TYPE: onoff
5123 DEFAULT: off
5124 LOC: Config.onoff.reload_into_ims
5125 DOC_START
5126 When you enable this option, client no-cache or ``reload''
5127 requests will be changed to If-Modified-Since requests.
5128 Doing this VIOLATES the HTTP standard. Enabling this
5129 feature could make you liable for problems which it
5130 causes.
5131
5132 see also refresh_pattern for a more selective approach.
5133 DOC_END
5134
5135 NAME: maximum_single_addr_tries
5136 TYPE: int
5137 LOC: Config.retry.maxtries
5138 DEFAULT: 1
5139 DOC_START
5140 This sets the maximum number of connection attempts for a
5141 host that only has one address (for multiple-address hosts,
5142 each address is tried once).
5143
5144 The default value is one attempt, the (not recommended)
5145 maximum is 255 tries. A warning message will be generated
5146 if it is set to a value greater than ten.
5147
5148 Note: This is in addition to the request re-forwarding which
5149 takes place if Squid fails to get a satisfying response.
5150 DOC_END
5151
5152 NAME: retry_on_error
5153 TYPE: onoff
5154 LOC: Config.retry.onerror
5155 DEFAULT: off
5156 DOC_START
5157 If set to on Squid will automatically retry requests when
5158 receiving an error response. This is mainly useful if you
5159 are in a complex cache hierarchy to work around access
5160 control errors.
5161 DOC_END
5162
5163 NAME: as_whois_server
5164 TYPE: string
5165 LOC: Config.as_whois_server
5166 DEFAULT: whois.ra.net
5167 DEFAULT_IF_NONE: whois.ra.net
5168 DOC_START
5169 WHOIS server to query for AS numbers. NOTE: AS numbers are
5170 queried only when Squid starts up, not for every request.
5171 DOC_END
5172
5173 NAME: offline_mode
5174 TYPE: onoff
5175 LOC: Config.onoff.offline
5176 DEFAULT: off
5177 DOC_START
5178 Enable this option and Squid will never try to validate cached
5179 objects.
5180 DOC_END
5181
5182 NAME: uri_whitespace
5183 TYPE: uri_whitespace
5184 LOC: Config.uri_whitespace
5185 DEFAULT: strip
5186 DOC_START
5187 What to do with requests that have whitespace characters in the
5188 URI. Options:
5189
5190 strip: The whitespace characters are stripped out of the URL.
5191 This is the behavior recommended by RFC2396.
5192 deny: The request is denied. The user receives an "Invalid
5193 Request" message.
5194 allow: The request is allowed and the URI is not changed. The
5195 whitespace characters remain in the URI. Note the
5196 whitespace is passed to redirector processes if they
5197 are in use.
5198 encode: The request is allowed and the whitespace characters are
5199 encoded according to RFC1738. This could be considered
5200 a violation of the HTTP/1.1
5201 RFC because proxies are not allowed to rewrite URI's.
5202 chop: The request is allowed and the URI is chopped at the
5203 first whitespace. This might also be considered a
5204 violation.
5205 DOC_END
5206
5207 NAME: coredump_dir
5208 TYPE: string
5209 LOC: Config.coredump_dir
5210 DEFAULT: none
5211 DEFAULT_IF_NONE: none
5212 DOC_START
5213 By default Squid leaves core files in the directory from where
5214 it was started. If you set 'coredump_dir' to a directory
5215 that exists, Squid will chdir() to that directory at startup
5216 and coredump files will be left there.
5217
5218 NOCOMMENT_START
5219 # Leave coredumps in the first cache dir
5220 coredump_dir @DEFAULT_SWAP_DIR@
5221 NOCOMMENT_END
5222 DOC_END
5223
5224 NAME: redirector_bypass
5225 TYPE: onoff
5226 LOC: Config.onoff.redirector_bypass
5227 DEFAULT: off
5228 DOC_START
5229 When this is 'on', a request will not go through the
5230 redirector if all redirectors are busy. If this is 'off'
5231 and the redirector queue grows too large, Squid will exit
5232 with a FATAL error and ask you to increase the number of
5233 redirectors. You should only enable this if the redirectors
5234 are not critical to your caching system. If you use
5235 redirectors for access control, and you enable this option,
5236 users may have access to pages they should not
5237 be allowed to request.
5238 DOC_END
5239
5240 NAME: chroot
5241 TYPE: string
5242 LOC: Config.chroot_dir
5243 DEFAULT: none
5244 DOC_START
5245 Use this to have Squid do a chroot() while initializing. This
5246 also causes Squid to fully drop root privileges after
5247 initializing. This means, for example, if you use a HTTP
5248 port less than 1024 and try to reconfigure, you will may get an
5249 error saying that Squid can not open the port.
5250 DOC_END
5251
5252 NAME: balance_on_multiple_ip
5253 TYPE: onoff
5254 LOC: Config.onoff.balance_on_multiple_ip
5255 DEFAULT: on
5256 DOC_START
5257 Some load balancing servers based on round robin DNS have been
5258 found not to preserve user session state across requests
5259 to different IP addresses.
5260
5261 By default Squid rotates IP's per request. By disabling
5262 this directive only connection failure triggers rotation.
5263 DOC_END
5264
5265 NAME: pipeline_prefetch
5266 TYPE: onoff
5267 LOC: Config.onoff.pipeline_prefetch
5268 DEFAULT: off
5269 DOC_START
5270 To boost the performance of pipelined requests to closer
5271 match that of a non-proxied environment Squid can try to fetch
5272 up to two requests in parallel from a pipeline.
5273
5274 Defaults to off for bandwidth management and access logging
5275 reasons.
5276 DOC_END
5277
5278 NAME: high_response_time_warning
5279 TYPE: int
5280 COMMENT: (msec)
5281 LOC: Config.warnings.high_rptm
5282 DEFAULT: 0
5283 DOC_START
5284 If the one-minute median response time exceeds this value,
5285 Squid prints a WARNING with debug level 0 to get the
5286 administrators attention. The value is in milliseconds.
5287 DOC_END
5288
5289 NAME: high_page_fault_warning
5290 TYPE: int
5291 LOC: Config.warnings.high_pf
5292 DEFAULT: 0
5293 DOC_START
5294 If the one-minute average page fault rate exceeds this
5295 value, Squid prints a WARNING with debug level 0 to get
5296 the administrators attention. The value is in page faults
5297 per second.
5298 DOC_END
5299
5300 NAME: high_memory_warning
5301 TYPE: b_size_t
5302 LOC: Config.warnings.high_memory
5303 DEFAULT: 0
5304 DOC_START
5305 If the memory usage (as determined by mallinfo) exceeds
5306 value, Squid prints a WARNING with debug level 0 to get
5307 the administrators attention.
5308 DOC_END
5309
5310 NAME: sleep_after_fork
5311 COMMENT: (microseconds)
5312 TYPE: int
5313 LOC: Config.sleep_after_fork
5314 DEFAULT: 0
5315 DOC_START
5316 When this is set to a non-zero value, the main Squid process
5317 sleeps the specified number of microseconds after a fork()
5318 system call. This sleep may help the situation where your
5319 system reports fork() failures due to lack of (virtual)
5320 memory. Note, however, if you have a lot of child
5321 processes, these sleep delays will add up and your
5322 Squid will not service requests for some amount of time
5323 until all the child processes have been started.
5324 On Windows value less then 1000 (1 milliseconds) are
5325 rounded to 1000.
5326 DOC_END
5327
5328 EOF