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