]> git.ipfire.org Git - thirdparty/squid.git/blob - src/cf.data.pre
Merged from trunk (r12082, v3.2.0.16+).
[thirdparty/squid.git] / src / cf.data.pre
1 #
2 # SQUID Web Proxy Cache http://www.squid-cache.org/
3 # ----------------------------------------------------------
4 #
5 # Squid is the result of efforts by numerous individuals from
6 # the Internet community; see the CONTRIBUTORS file for full
7 # details. Many organizations have provided support for Squid's
8 # development; see the SPONSORS file for full details. Squid is
9 # Copyrighted (C) 2000 by the Regents of the University of
10 # California; see the COPYRIGHT file for full details. Squid
11 # incorporates software developed and/or copyrighted by other
12 # sources; see the CREDITS file for full details.
13 #
14 # This program is free software; you can redistribute it and/or modify
15 # it under the terms of the GNU General Public License as published by
16 # the Free Software Foundation; either version 2 of the License, or
17 # (at your option) any later version.
18 #
19 # This program is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU General Public License for more details.
23 #
24 # You should have received a copy of the GNU General Public License
25 # along with this program; if not, write to the Free Software
26 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
27 #
28
29 COMMENT_START
30 WELCOME TO @SQUID@
31 ----------------------------
32
33 This is the documentation for the Squid configuration file.
34 This documentation can also be found online at:
35 http://www.squid-cache.org/Doc/config/
36
37 You may wish to look at the Squid home page and wiki for the
38 FAQ and other documentation:
39 http://www.squid-cache.org/
40 http://wiki.squid-cache.org/SquidFaq
41 http://wiki.squid-cache.org/ConfigExamples
42
43 This documentation shows what the defaults for various directives
44 happen to be. If you don't need to change the default, you should
45 leave the line out of your squid.conf in most cases.
46
47 In some cases "none" refers to no default setting at all,
48 while in other cases it refers to the value of the option
49 - the comments for that keyword indicate if this is the case.
50
51 COMMENT_END
52
53 COMMENT_START
54 Configuration options can be included using the "include" directive.
55 Include takes a list of files to include. Quoting and wildcards are
56 supported.
57
58 For example,
59
60 include /path/to/included/file/squid.acl.config
61
62 Includes can be nested up to a hard-coded depth of 16 levels.
63 This arbitrary restriction is to prevent recursive include references
64 from causing Squid entering an infinite loop whilst trying to load
65 configuration files.
66
67
68 Conditional configuration
69
70 If-statements can be used to make configuration directives
71 depend on conditions:
72
73 if <CONDITION>
74 ... regular configuration directives ...
75 [else
76 ... regular configuration directives ...]
77 endif
78
79 The else part is optional. The keywords "if", "else", and "endif"
80 must be typed on their own lines, as if they were regular
81 configuration directives.
82
83 NOTE: An else-if condition is not supported.
84
85 These individual conditions types are supported:
86
87 true
88 Always evaluates to true.
89 false
90 Always evaluates to false.
91 <integer> = <integer>
92 Equality comparison of two integer numbers.
93
94
95 SMP-Related Macros
96
97 The following SMP-related preprocessor macros can be used.
98
99 ${process_name} expands to the current Squid process "name"
100 (e.g., squid1, squid2, or cache1).
101
102 ${process_number} expands to the current Squid process
103 identifier, which is an integer number (e.g., 1, 2, 3) unique
104 across all Squid processes.
105 COMMENT_END
106
107 # Options Removed in 3.2
108 NAME: ignore_expect_100
109 TYPE: obsolete
110 DOC_START
111 Remove this line. The HTTP/1.1 feature is now fully supported by default.
112 DOC_END
113
114 NAME: dns_v4_fallback
115 TYPE: obsolete
116 DOC_START
117 Remove this line.
118 DOC_END
119
120 NAME: ftp_list_width
121 TYPE: obsolete
122 DOC_START
123 Remove this line. Configure FTP page display using the CSS controls in errorpages.css instead.
124 DOC_END
125
126 NAME: url_rewrite_concurrency
127 TYPE: obsolete
128 DOC_START
129 Remove this line. Set the 'concurrency=' option of url_rewrite_children instead.
130 DOC_END
131
132 # Options Removed in 3.1
133 NAME: dns_testnames
134 TYPE: obsolete
135 DOC_START
136 Remove this line. DNS is no longer tested on startup.
137 DOC_END
138
139 NAME: extension_methods
140 TYPE: obsolete
141 DOC_START
142 Remove this line. All valid methods for HTTP are accepted by default.
143 DOC_END
144
145 # 2.7 Options Removed/Replaced in 3.1
146 NAME: incoming_rate
147 TYPE: obsolete
148 DOC_NONE
149
150 NAME: server_http11
151 TYPE: obsolete
152 DOC_START
153 Remove this line. HTTP/1.1 is supported by default.
154 DOC_END
155
156 NAME: upgrade_http0.9
157 TYPE: obsolete
158 DOC_START
159 Remove this line. ICY/1.0 streaming protocol is supported by default.
160 DOC_END
161
162 NAME: zph_local zph_mode zph_option zph_parent zph_sibling
163 TYPE: obsolete
164 DOC_START
165 Alter these entries. Use the qos_flows directive instead.
166 DOC_END
167
168 # Options Removed in 3.0
169 NAME: header_access
170 TYPE: obsolete
171 DOC_START
172 Since squid-3.0 replace with request_header_access or reply_header_access
173 depending on whether you wish to match client requests or server replies.
174 DOC_END
175
176 NAME: httpd_accel_no_pmtu_disc
177 TYPE: obsolete
178 DOC_START
179 Since squid-3.0 use the 'disable-pmtu-discovery' flag on http_port instead.
180 DOC_END
181
182 COMMENT_START
183 OPTIONS FOR AUTHENTICATION
184 -----------------------------------------------------------------------------
185 COMMENT_END
186
187 NAME: auth_param
188 TYPE: authparam
189 IFDEF: USE_AUTH
190 LOC: Auth::TheConfig
191 DEFAULT: none
192 DOC_START
193 This is used to define parameters for the various authentication
194 schemes supported by Squid.
195
196 format: auth_param scheme parameter [setting]
197
198 The order in which authentication schemes are presented to the client is
199 dependent on the order the scheme first appears in config file. IE
200 has a bug (it's not RFC 2617 compliant) in that it will use the basic
201 scheme if basic is the first entry presented, even if more secure
202 schemes are presented. For now use the order in the recommended
203 settings section below. If other browsers have difficulties (don't
204 recognize the schemes offered even if you are using basic) either
205 put basic first, or disable the other schemes (by commenting out their
206 program entry).
207
208 Once an authentication scheme is fully configured, it can only be
209 shutdown by shutting squid down and restarting. Changes can be made on
210 the fly and activated with a reconfigure. I.E. You can change to a
211 different helper, but not unconfigure the helper completely.
212
213 Please note that while this directive defines how Squid processes
214 authentication it does not automatically activate authentication.
215 To use authentication you must in addition make use of ACLs based
216 on login name in http_access (proxy_auth, proxy_auth_regex or
217 external with %LOGIN used in the format tag). The browser will be
218 challenged for authentication on the first such acl encountered
219 in http_access processing and will also be re-challenged for new
220 login credentials if the request is being denied by a proxy_auth
221 type acl.
222
223 WARNING: authentication can't be used in a transparently intercepting
224 proxy as the client then thinks it is talking to an origin server and
225 not the proxy. This is a limitation of bending the TCP/IP protocol to
226 transparently intercepting port 80, not a limitation in Squid.
227 Ports flagged 'transparent', 'intercept', or 'tproxy' have
228 authentication disabled.
229
230 === Parameters for the basic scheme follow. ===
231
232 "program" cmdline
233 Specify the command for the external authenticator. Such a program
234 reads a line containing "username password" and replies "OK" or
235 "ERR" in an endless loop. "ERR" responses may optionally be followed
236 by a error description available as %m in the returned error page.
237 If you use an authenticator, make sure you have 1 acl of type
238 proxy_auth.
239
240 By default, the basic authentication scheme is not used unless a
241 program is specified.
242
243 If you want to use the traditional NCSA proxy authentication, set
244 this line to something like
245
246 auth_param basic program @DEFAULT_PREFIX@/libexec/ncsa_auth @DEFAULT_PREFIX@/etc/passwd
247
248 "utf8" on|off
249 HTTP uses iso-latin-1 as characterset, while some authentication
250 backends such as LDAP expects UTF-8. If this is set to on Squid will
251 translate the HTTP iso-latin-1 charset to UTF-8 before sending the
252 username & password to the helper.
253
254 "children" numberofchildren [startup=N] [idle=N] [concurrency=N]
255 The maximum number of authenticator processes to spawn. If you start too few
256 Squid will have to wait for them to process a backlog of credential
257 verifications, slowing it down. When password verifications are
258 done via a (slow) network you are likely to need lots of
259 authenticator processes.
260
261 The startup= and idle= options permit some skew in the exact amount
262 run. A minimum of startup=N will begin during startup and reconfigure.
263 Squid will start more in groups of up to idle=N in an attempt to meet
264 traffic needs and to keep idle=N free above those traffic needs up to
265 the maximum.
266
267 The concurrency= option sets the number of concurrent requests the
268 helper can process. The default of 0 is used for helpers who only
269 supports one request at a time. Setting this to a number greater than
270 0 changes the protocol used to include a channel number first on the
271 request/response line, allowing multiple requests to be sent to the
272 same helper in parallell without wating for the response.
273 Must not be set unless it's known the helper supports this.
274
275 auth_param basic children 20 startup=0 idle=1
276
277 "realm" realmstring
278 Specifies the realm name which is to be reported to the
279 client for the basic proxy authentication scheme (part of
280 the text the user will see when prompted their username and
281 password). There is no default.
282 auth_param basic realm Squid proxy-caching web server
283
284 "credentialsttl" timetolive
285 Specifies how long squid assumes an externally validated
286 username:password pair is valid for - in other words how
287 often the helper program is called for that user. Set this
288 low to force revalidation with short lived passwords. Note
289 setting this high does not impact your susceptibility
290 to replay attacks unless you are using an one-time password
291 system (such as SecureID). If you are using such a system,
292 you will be vulnerable to replay attacks unless you also
293 use the max_user_ip ACL in an http_access rule.
294
295 "casesensitive" on|off
296 Specifies if usernames are case sensitive. Most user databases are
297 case insensitive allowing the same username to be spelled using both
298 lower and upper case letters, but some are case sensitive. This
299 makes a big difference for user_max_ip ACL processing and similar.
300 auth_param basic casesensitive off
301
302 === Parameters for the digest scheme follow ===
303
304 "program" cmdline
305 Specify the command for the external authenticator. Such
306 a program reads a line containing "username":"realm" and
307 replies with the appropriate H(A1) value hex encoded or
308 ERR if the user (or his H(A1) hash) does not exists.
309 See rfc 2616 for the definition of H(A1).
310 "ERR" responses may optionally be followed by a error description
311 available as %m in the returned error page.
312
313 By default, the digest authentication scheme is not used unless a
314 program is specified.
315
316 If you want to use a digest authenticator, set this line to
317 something like
318
319 auth_param digest program @DEFAULT_PREFIX@/bin/digest_pw_auth @DEFAULT_PREFIX@/etc/digpass
320
321 "utf8" on|off
322 HTTP uses iso-latin-1 as characterset, while some authentication
323 backends such as LDAP expects UTF-8. If this is set to on Squid will
324 translate the HTTP iso-latin-1 charset to UTF-8 before sending the
325 username & password to the helper.
326
327 "children" numberofchildren [startup=N] [idle=N] [concurrency=N]
328 The maximum number of authenticator processes to spawn (default 5).
329 If you start too few Squid will have to wait for them to
330 process a backlog of H(A1) calculations, slowing it down.
331 When the H(A1) calculations are done via a (slow) network
332 you are likely to need lots of authenticator processes.
333
334 The startup= and idle= options permit some skew in the exact amount
335 run. A minimum of startup=N will begin during startup and reconfigure.
336 Squid will start more in groups of up to idle=N in an attempt to meet
337 traffic needs and to keep idle=N free above those traffic needs up to
338 the maximum.
339
340 The concurrency= option sets the number of concurrent requests the
341 helper can process. The default of 0 is used for helpers who only
342 supports one request at a time. Setting this to a number greater than
343 0 changes the protocol used to include a channel number first on the
344 request/response line, allowing multiple requests to be sent to the
345 same helper in parallell without wating for the response.
346 Must not be set unless it's known the helper supports this.
347
348 auth_param digest children 20 startup=0 idle=1
349
350 "realm" realmstring
351 Specifies the realm name which is to be reported to the
352 client for the digest proxy authentication scheme (part of
353 the text the user will see when prompted their username and
354 password). There is no default.
355 auth_param digest realm Squid proxy-caching web server
356
357 "nonce_garbage_interval" timeinterval
358 Specifies the interval that nonces that have been issued
359 to client_agent's are checked for validity.
360
361 "nonce_max_duration" timeinterval
362 Specifies the maximum length of time a given nonce will be
363 valid for.
364
365 "nonce_max_count" number
366 Specifies the maximum number of times a given nonce can be
367 used.
368
369 "nonce_strictness" on|off
370 Determines if squid requires strict increment-by-1 behavior
371 for nonce counts, or just incrementing (off - for use when
372 useragents generate nonce counts that occasionally miss 1
373 (ie, 1,2,4,6)). Default off.
374
375 "check_nonce_count" on|off
376 This directive if set to off can disable the nonce count check
377 completely to work around buggy digest qop implementations in
378 certain mainstream browser versions. Default on to check the
379 nonce count to protect from authentication replay attacks.
380
381 "post_workaround" on|off
382 This is a workaround to certain buggy browsers who sends
383 an incorrect request digest in POST requests when reusing
384 the same nonce as acquired earlier on a GET request.
385
386 === NTLM scheme options follow ===
387
388 "program" cmdline
389 Specify the command for the external NTLM authenticator.
390 Such a program reads exchanged NTLMSSP packets with
391 the browser via Squid until authentication is completed.
392 If you use an NTLM authenticator, make sure you have 1 acl
393 of type proxy_auth. By default, the NTLM authenticator_program
394 is not used.
395
396 auth_param ntlm program @DEFAULT_PREFIX@/bin/ntlm_auth
397
398 "children" numberofchildren [startup=N] [idle=N]
399 The maximum number of authenticator processes to spawn (default 5).
400 If you start too few Squid will have to wait for them to
401 process a backlog of credential verifications, slowing it
402 down. When credential verifications are done via a (slow)
403 network you are likely to need lots of authenticator
404 processes.
405
406 The startup= and idle= options permit some skew in the exact amount
407 run. A minimum of startup=N will begin during startup and reconfigure.
408 Squid will start more in groups of up to idle=N in an attempt to meet
409 traffic needs and to keep idle=N free above those traffic needs up to
410 the maximum.
411
412 auth_param ntlm children 20 startup=0 idle=1
413
414 "keep_alive" on|off
415 If you experience problems with PUT/POST requests when using the
416 Negotiate authentication scheme then you can try setting this to
417 off. This will cause Squid to forcibly close the connection on
418 the initial requests where the browser asks which schemes are
419 supported by the proxy.
420
421 auth_param ntlm keep_alive on
422
423 === Options for configuring the NEGOTIATE auth-scheme follow ===
424
425 "program" cmdline
426 Specify the command for the external Negotiate authenticator.
427 This protocol is used in Microsoft Active-Directory enabled setups with
428 the Microsoft Internet Explorer or Mozilla Firefox browsers.
429 Its main purpose is to exchange credentials with the Squid proxy
430 using the Kerberos mechanisms.
431 If you use a Negotiate authenticator, make sure you have at least
432 one acl of type proxy_auth active. By default, the negotiate
433 authenticator_program is not used.
434 The only supported program for this role is the ntlm_auth
435 program distributed as part of Samba, version 4 or later.
436
437 auth_param negotiate program @DEFAULT_PREFIX@/bin/ntlm_auth --helper-protocol=gss-spnego
438
439 "children" numberofchildren [startup=N] [idle=N]
440 The maximum number of authenticator processes to spawn (default 5).
441 If you start too few Squid will have to wait for them to
442 process a backlog of credential verifications, slowing it
443 down. When crendential verifications are done via a (slow)
444 network you are likely to need lots of authenticator
445 processes.
446
447 The startup= and idle= options permit some skew in the exact amount
448 run. A minimum of startup=N will begin during startup and reconfigure.
449 Squid will start more in groups of up to idle=N in an attempt to meet
450 traffic needs and to keep idle=N free above those traffic needs up to
451 the maximum.
452
453 auth_param negotiate children 20 startup=0 idle=1
454
455 "keep_alive" on|off
456 If you experience problems with PUT/POST requests when using the
457 Negotiate authentication scheme then you can try setting this to
458 off. This will cause Squid to forcibly close the connection on
459 the initial requests where the browser asks which schemes are
460 supported by the proxy.
461
462 auth_param negotiate keep_alive on
463
464
465 Examples:
466
467 #Recommended minimum configuration per scheme:
468 #auth_param negotiate program <uncomment and complete this line to activate>
469 #auth_param negotiate children 20 startup=0 idle=1
470 #auth_param negotiate keep_alive on
471 #
472 #auth_param ntlm program <uncomment and complete this line to activate>
473 #auth_param ntlm children 20 startup=0 idle=1
474 #auth_param ntlm keep_alive on
475 #
476 #auth_param digest program <uncomment and complete this line>
477 #auth_param digest children 20 startup=0 idle=1
478 #auth_param digest realm Squid proxy-caching web server
479 #auth_param digest nonce_garbage_interval 5 minutes
480 #auth_param digest nonce_max_duration 30 minutes
481 #auth_param digest nonce_max_count 50
482 #
483 #auth_param basic program <uncomment and complete this line>
484 #auth_param basic children 5 startup=5 idle=1
485 #auth_param basic realm Squid proxy-caching web server
486 #auth_param basic credentialsttl 2 hours
487 DOC_END
488
489 NAME: authenticate_cache_garbage_interval
490 TYPE: time_t
491 DEFAULT: 1 hour
492 LOC: Config.authenticateGCInterval
493 DOC_START
494 The time period between garbage collection across the username cache.
495 This is a tradeoff between memory utilization (long intervals - say
496 2 days) and CPU (short intervals - say 1 minute). Only change if you
497 have good reason to.
498 DOC_END
499
500 NAME: authenticate_ttl
501 TYPE: time_t
502 DEFAULT: 1 hour
503 LOC: Config.authenticateTTL
504 DOC_START
505 The time a user & their credentials stay in the logged in
506 user cache since their last request. When the garbage
507 interval passes, all user credentials that have passed their
508 TTL are removed from memory.
509 DOC_END
510
511 NAME: authenticate_ip_ttl
512 TYPE: time_t
513 LOC: Config.authenticateIpTTL
514 DEFAULT: 0 seconds
515 DOC_START
516 If you use proxy authentication and the 'max_user_ip' ACL,
517 this directive controls how long Squid remembers the IP
518 addresses associated with each user. Use a small value
519 (e.g., 60 seconds) if your users might change addresses
520 quickly, as is the case with dialups. You might be safe
521 using a larger value (e.g., 2 hours) in a corporate LAN
522 environment with relatively static address assignments.
523 DOC_END
524
525 COMMENT_START
526 ACCESS CONTROLS
527 -----------------------------------------------------------------------------
528 COMMENT_END
529
530 NAME: external_acl_type
531 TYPE: externalAclHelper
532 LOC: Config.externalAclHelperList
533 DEFAULT: none
534 DOC_START
535 This option defines external acl classes using a helper program
536 to look up the status
537
538 external_acl_type name [options] FORMAT.. /path/to/helper [helper arguments..]
539
540 Options:
541
542 ttl=n TTL in seconds for cached results (defaults to 3600
543 for 1 hour)
544 negative_ttl=n
545 TTL for cached negative lookups (default same
546 as ttl)
547 children-max=n
548 Maximum number of acl helper processes spawned to service
549 external acl lookups of this type. (default 20)
550 children-startup=n
551 Minimum number of acl helper processes to spawn during
552 startup and reconfigure to service external acl lookups
553 of this type. (default 0)
554 children-idle=n
555 Number of acl helper processes to keep ahead of traffic
556 loads. Squid will spawn this many at once whenever load
557 rises above the capabilities of existing processes.
558 Up to the value of children-max. (default 1)
559 concurrency=n concurrency level per process. Only used with helpers
560 capable of processing more than one query at a time.
561 cache=n limit the result cache size, default is unbounded.
562 grace=n Percentage remaining of TTL where a refresh of a
563 cached entry should be initiated without needing to
564 wait for a new reply. (default is for no grace period)
565 protocol=2.5 Compatibility mode for Squid-2.5 external acl helpers
566 ipv4 / ipv6 IP-mode used to communicate to this helper.
567 For compatability with older configurations and helpers
568 the default is currently 'ipv4'.
569
570 FORMAT specifications
571
572 %LOGIN Authenticated user login name
573 %EXT_USER Username from previous external acl
574 %EXT_LOG Log details from previous external acl
575 %EXT_TAG Tag from previous external acl
576 %IDENT Ident user name
577 %SRC Client IP
578 %SRCPORT Client source port
579 %URI Requested URI
580 %DST Requested host
581 %PROTO Requested protocol
582 %PORT Requested port
583 %PATH Requested URL path
584 %METHOD Request method
585 %MYADDR Squid interface address
586 %MYPORT Squid http_port number
587 %PATH Requested URL-path (including query-string if any)
588 %USER_CERT SSL User certificate in PEM format
589 %USER_CERTCHAIN SSL User certificate chain in PEM format
590 %USER_CERT_xx SSL User certificate subject attribute xx
591 %USER_CA_xx SSL User certificate issuer attribute xx
592
593 %>{Header} HTTP request header "Header"
594 %>{Hdr:member}
595 HTTP request header "Hdr" list member "member"
596 %>{Hdr:;member}
597 HTTP request header list member using ; as
598 list separator. ; can be any non-alphanumeric
599 character.
600
601 %<{Header} HTTP reply header "Header"
602 %<{Hdr:member}
603 HTTP reply header "Hdr" list member "member"
604 %<{Hdr:;member}
605 HTTP reply header list member using ; as
606 list separator. ; can be any non-alphanumeric
607 character.
608
609 %% The percent sign. Useful for helpers which need
610 an unchanging input format.
611
612 In addition to the above, any string specified in the referencing
613 acl will also be included in the helper request line, after the
614 specified formats (see the "acl external" directive)
615
616 The helper receives lines per the above format specification,
617 and returns lines starting with OK or ERR indicating the validity
618 of the request and optionally followed by additional keywords with
619 more details.
620
621 General result syntax:
622
623 OK/ERR keyword=value ...
624
625 Defined keywords:
626
627 user= The users name (login)
628 password= The users password (for login= cache_peer option)
629 message= Message describing the reason. Available as %o
630 in error pages
631 tag= Apply a tag to a request (for both ERR and OK results)
632 Only sets a tag, does not alter existing tags.
633 log= String to be logged in access.log. Available as
634 %ea in logformat specifications
635
636 If protocol=3.0 (the default) then URL escaping is used to protect
637 each value in both requests and responses.
638
639 If using protocol=2.5 then all values need to be enclosed in quotes
640 if they may contain whitespace, or the whitespace escaped using \.
641 And quotes or \ characters within the keyword value must be \ escaped.
642
643 When using the concurrency= option the protocol is changed by
644 introducing a query channel tag infront of the request/response.
645 The query channel tag is a number between 0 and concurrency-1.
646 DOC_END
647
648 NAME: acl
649 TYPE: acl
650 LOC: Config.aclList
651 IFDEF USE_SSL
652 DEFAULT: ssl::certHasExpired ssl_error X509_V_ERR_CERT_HAS_EXPIRED
653 DEFAULT: ssl::certNotYetValid ssl_error X509_V_ERR_CERT_NOT_YET_VALID
654 DEFAULT: ssl::certDomainMismatch ssl_error SQUID_X509_V_ERR_DOMAIN_MISMATCH
655 DEFAULT: ssl::certUntrusted ssl_error X509_V_ERR_INVALID_CA X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY X509_V_ERR_CERT_UNTRUSTED
656 DEFAULT: ssl::certSelfSigned ssl_error X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT
657 ENDIF
658 DEFAULT: all src all
659 DEFAULT: manager url_regex -i ^cache_object:// +i ^https?://[^/]+/squid-internal-mgr/
660 DEFAULT: localhost src 127.0.0.1/32 ::1
661 DEFAULT: to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1
662 DEFAULT_DOC: ACLs all, manager, localhost, and to_localhost are predefined.
663 DOC_START
664 Defining an Access List
665
666 Every access list definition must begin with an aclname and acltype,
667 followed by either type-specific arguments or a quoted filename that
668 they are read from.
669
670 acl aclname acltype argument ...
671 acl aclname acltype "file" ...
672
673 When using "file", the file should contain one item per line.
674
675 By default, regular expressions are CASE-SENSITIVE.
676 To make them case-insensitive, use the -i option. To return case-sensitive
677 use the +i option between patterns, or make a new ACL line without -i.
678
679 Some acl types require suspending the current request in order
680 to access some external data source.
681 Those which do are marked with the tag [slow], those which
682 don't are marked as [fast].
683 See http://wiki.squid-cache.org/SquidFaq/SquidAcl
684 for further information
685
686 ***** ACL TYPES AVAILABLE *****
687
688 acl aclname src ip-address/mask ... # clients IP address [fast]
689 acl aclname src addr1-addr2/mask ... # range of addresses [fast]
690 acl aclname dst ip-address/mask ... # URL host's IP address [slow]
691 acl aclname localip ip-address/mask ... # IP address the client connected to [fast]
692
693 acl aclname arp mac-address ... (xx:xx:xx:xx:xx:xx notation)
694 # The arp ACL requires the special configure option --enable-arp-acl.
695 # Furthermore, the ARP ACL code is not portable to all operating systems.
696 # It works on Linux, Solaris, Windows, FreeBSD, and some
697 # other *BSD variants.
698 # [fast]
699 #
700 # NOTE: Squid can only determine the MAC address for clients that are on
701 # the same subnet. If the client is on a different subnet,
702 # then Squid cannot find out its MAC address.
703
704 acl aclname srcdomain .foo.com ...
705 # reverse lookup, from client IP [slow]
706 acl aclname dstdomain .foo.com ...
707 # Destination server from URL [fast]
708 acl aclname srcdom_regex [-i] \.foo\.com ...
709 # regex matching client name [slow]
710 acl aclname dstdom_regex [-i] \.foo\.com ...
711 # regex matching server [fast]
712 #
713 # For dstdomain and dstdom_regex a reverse lookup is tried if a IP
714 # based URL is used and no match is found. The name "none" is used
715 # if the reverse lookup fails.
716
717 acl aclname src_as number ...
718 acl aclname dst_as number ...
719 # [fast]
720 # Except for access control, AS numbers can be used for
721 # routing of requests to specific caches. Here's an
722 # example for routing all requests for AS#1241 and only
723 # those to mycache.mydomain.net:
724 # acl asexample dst_as 1241
725 # cache_peer_access mycache.mydomain.net allow asexample
726 # cache_peer_access mycache_mydomain.net deny all
727
728 acl aclname peername myPeer ...
729 # [fast]
730 # match against a named cache_peer entry
731 # set unique name= on cache_peer lines for reliable use.
732
733 acl aclname time [day-abbrevs] [h1:m1-h2:m2]
734 # [fast]
735 # day-abbrevs:
736 # S - Sunday
737 # M - Monday
738 # T - Tuesday
739 # W - Wednesday
740 # H - Thursday
741 # F - Friday
742 # A - Saturday
743 # h1:m1 must be less than h2:m2
744
745 acl aclname url_regex [-i] ^http:// ...
746 # regex matching on whole URL [fast]
747 acl aclname urlpath_regex [-i] \.gif$ ...
748 # regex matching on URL path [fast]
749
750 acl aclname port 80 70 21 0-1024... # destination TCP port [fast]
751 # ranges are alloed
752 acl aclname localport 3128 ... # TCP port the client connected to [fast]
753 # NP: for interception mode this is usually '80'
754
755 acl aclname myportname 3128 ... # http(s)_port name [fast]
756
757 acl aclname proto HTTP FTP ... # request protocol [fast]
758
759 acl aclname method GET POST ... # HTTP request method [fast]
760
761 acl aclname http_status 200 301 500- 400-403 ...
762 # status code in reply [fast]
763
764 acl aclname browser [-i] regexp ...
765 # pattern match on User-Agent header (see also req_header below) [fast]
766
767 acl aclname referer_regex [-i] regexp ...
768 # pattern match on Referer header [fast]
769 # Referer is highly unreliable, so use with care
770
771 acl aclname ident username ...
772 acl aclname ident_regex [-i] pattern ...
773 # string match on ident output [slow]
774 # use REQUIRED to accept any non-null ident.
775
776 acl aclname proxy_auth [-i] username ...
777 acl aclname proxy_auth_regex [-i] pattern ...
778 # perform http authentication challenge to the client and match against
779 # supplied credentials [slow]
780 #
781 # takes a list of allowed usernames.
782 # use REQUIRED to accept any valid username.
783 #
784 # Will use proxy authentication in forward-proxy scenarios, and plain
785 # http authenticaiton in reverse-proxy scenarios
786 #
787 # NOTE: when a Proxy-Authentication header is sent but it is not
788 # needed during ACL checking the username is NOT logged
789 # in access.log.
790 #
791 # NOTE: proxy_auth requires a EXTERNAL authentication program
792 # to check username/password combinations (see
793 # auth_param directive).
794 #
795 # NOTE: proxy_auth can't be used in a transparent/intercepting proxy
796 # as the browser needs to be configured for using a proxy in order
797 # to respond to proxy authentication.
798
799 acl aclname snmp_community string ...
800 # A community string to limit access to your SNMP Agent [fast]
801 # Example:
802 #
803 # acl snmppublic snmp_community public
804
805 acl aclname maxconn number
806 # This will be matched when the client's IP address has
807 # more than <number> TCP connections established. [fast]
808 # NOTE: This only measures direct TCP links so X-Forwarded-For
809 # indirect clients are not counted.
810
811 acl aclname max_user_ip [-s] number
812 # This will be matched when the user attempts to log in from more
813 # than <number> different ip addresses. The authenticate_ip_ttl
814 # parameter controls the timeout on the ip entries. [fast]
815 # If -s is specified the limit is strict, denying browsing
816 # from any further IP addresses until the ttl has expired. Without
817 # -s Squid will just annoy the user by "randomly" denying requests.
818 # (the counter is reset each time the limit is reached and a
819 # request is denied)
820 # NOTE: in acceleration mode or where there is mesh of child proxies,
821 # clients may appear to come from multiple addresses if they are
822 # going through proxy farms, so a limit of 1 may cause user problems.
823
824 acl aclname random probability
825 # Pseudo-randomly match requests. Based on the probability given.
826 # Probability may be written as a decimal (0.333), fraction (1/3)
827 # or ratio of matches:non-matches (3:5).
828
829 acl aclname req_mime_type [-i] mime-type ...
830 # regex match against the mime type of the request generated
831 # by the client. Can be used to detect file upload or some
832 # types HTTP tunneling requests [fast]
833 # NOTE: This does NOT match the reply. You cannot use this
834 # to match the returned file type.
835
836 acl aclname req_header header-name [-i] any\.regex\.here
837 # regex match against any of the known request headers. May be
838 # thought of as a superset of "browser", "referer" and "mime-type"
839 # ACL [fast]
840
841 acl aclname rep_mime_type [-i] mime-type ...
842 # regex match against the mime type of the reply received by
843 # squid. Can be used to detect file download or some
844 # types HTTP tunneling requests. [fast]
845 # NOTE: This has no effect in http_access rules. It only has
846 # effect in rules that affect the reply data stream such as
847 # http_reply_access.
848
849 acl aclname rep_header header-name [-i] any\.regex\.here
850 # regex match against any of the known reply headers. May be
851 # thought of as a superset of "browser", "referer" and "mime-type"
852 # ACLs [fast]
853
854 acl aclname external class_name [arguments...]
855 # external ACL lookup via a helper class defined by the
856 # external_acl_type directive [slow]
857
858 acl aclname user_cert attribute values...
859 # match against attributes in a user SSL certificate
860 # attribute is one of DN/C/O/CN/L/ST [fast]
861
862 acl aclname ca_cert attribute values...
863 # match against attributes a users issuing CA SSL certificate
864 # attribute is one of DN/C/O/CN/L/ST [fast]
865
866 acl aclname ext_user username ...
867 acl aclname ext_user_regex [-i] pattern ...
868 # string match on username returned by external acl helper [slow]
869 # use REQUIRED to accept any non-null user name.
870
871 acl aclname tag tagvalue ...
872 # string match on tag returned by external acl helper [slow]
873
874 acl aclname hier_code codename ...
875 # string match against squid hierarchy code(s); [fast]
876 # e.g., DIRECT, PARENT_HIT, NONE, etc.
877 #
878 # NOTE: This has no effect in http_access rules. It only has
879 # effect in rules that affect the reply data stream such as
880 # http_reply_access.
881
882 IFDEF USE_SSL
883 acl aclname ssl_error errorname
884 # match against SSL certificate validation error [fast]
885 # For valid error names see in @DEFAULT_ERROR_DIR@/templates/error-details.txt template file
886 # The user aditionaly can use as error name the following error name
887 # shortcuts:
888 # [ssl::]certHasExpired: certificate "not after" field is in the past
889 # [ssl::]certNotYetValid: certificate "not before" field is in the
890 # future
891 # [ssl::]certDomainMismatch: The certificate CN domain does not match
892 # connecting host name
893 # [ssl::]certUntrusted: The certificate is untrusted because of an
894 # error says that the certificate issuer is not trusted.
895 # [ssl::]certSelfSigned: The certificate is self signed
896 #
897 # The ssl::certHasExpired, ssl::certNotYetValid ssl::certDomainMismatch,
898 # ssl::certUntrusted and ssl::certSelfSigned also exists as predefined
899 # acl lists.
900 #
901 # NOTE: The ssl_error acl has effect only when used with
902 # sslproxy_cert_error, sslproxy_cert_sign and sslproxy_cert_adapt
903 # access lists.
904 ENDIF
905
906 Examples:
907 acl macaddress arp 09:00:2b:23:45:67
908 acl myexample dst_as 1241
909 acl password proxy_auth REQUIRED
910 acl fileupload req_mime_type -i ^multipart/form-data$
911 acl javascript rep_mime_type -i ^application/x-javascript$
912
913 NOCOMMENT_START
914 #
915 # Recommended minimum configuration:
916 #
917
918 # Example rule allowing access from your local networks.
919 # Adapt to list your (internal) IP networks from where browsing
920 # should be allowed
921 acl localnet src 10.0.0.0/8 # RFC1918 possible internal network
922 acl localnet src 172.16.0.0/12 # RFC1918 possible internal network
923 acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
924 acl localnet src fc00::/7 # RFC 4193 local private network range
925 acl localnet src fe80::/10 # RFC 4291 link-local (directly plugged) machines
926
927 acl SSL_ports port 443
928 acl Safe_ports port 80 # http
929 acl Safe_ports port 21 # ftp
930 acl Safe_ports port 443 # https
931 acl Safe_ports port 70 # gopher
932 acl Safe_ports port 210 # wais
933 acl Safe_ports port 1025-65535 # unregistered ports
934 acl Safe_ports port 280 # http-mgmt
935 acl Safe_ports port 488 # gss-http
936 acl Safe_ports port 591 # filemaker
937 acl Safe_ports port 777 # multiling http
938 acl CONNECT method CONNECT
939 NOCOMMENT_END
940 DOC_END
941
942 NAME: follow_x_forwarded_for
943 TYPE: acl_access
944 IFDEF: FOLLOW_X_FORWARDED_FOR
945 LOC: Config.accessList.followXFF
946 DEFAULT_IF_NONE: deny all
947 DOC_START
948 Allowing or Denying the X-Forwarded-For header to be followed to
949 find the original source of a request.
950
951 Requests may pass through a chain of several other proxies
952 before reaching us. The X-Forwarded-For header will contain a
953 comma-separated list of the IP addresses in the chain, with the
954 rightmost address being the most recent.
955
956 If a request reaches us from a source that is allowed by this
957 configuration item, then we consult the X-Forwarded-For header
958 to see where that host received the request from. If the
959 X-Forwarded-For header contains multiple addresses, we continue
960 backtracking until we reach an address for which we are not allowed
961 to follow the X-Forwarded-For header, or until we reach the first
962 address in the list. For the purpose of ACL used in the
963 follow_x_forwarded_for directive the src ACL type always matches
964 the address we are testing and srcdomain matches its rDNS.
965
966 The end result of this process is an IP address that we will
967 refer to as the indirect client address. This address may
968 be treated as the client address for access control, ICAP, delay
969 pools and logging, depending on the acl_uses_indirect_client,
970 icap_uses_indirect_client, delay_pool_uses_indirect_client,
971 log_uses_indirect_client and tproxy_uses_indirect_client options.
972
973 This clause only supports fast acl types.
974 See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
975
976 SECURITY CONSIDERATIONS:
977
978 Any host for which we follow the X-Forwarded-For header
979 can place incorrect information in the header, and Squid
980 will use the incorrect information as if it were the
981 source address of the request. This may enable remote
982 hosts to bypass any access control restrictions that are
983 based on the client's source addresses.
984
985 For example:
986
987 acl localhost src 127.0.0.1
988 acl my_other_proxy srcdomain .proxy.example.com
989 follow_x_forwarded_for allow localhost
990 follow_x_forwarded_for allow my_other_proxy
991 DOC_END
992
993 NAME: acl_uses_indirect_client
994 COMMENT: on|off
995 TYPE: onoff
996 IFDEF: FOLLOW_X_FORWARDED_FOR
997 DEFAULT: on
998 LOC: Config.onoff.acl_uses_indirect_client
999 DOC_START
1000 Controls whether the indirect client address
1001 (see follow_x_forwarded_for) is used instead of the
1002 direct client address in acl matching.
1003
1004 NOTE: maxconn ACL considers direct TCP links and indirect
1005 clients will always have zero. So no match.
1006 DOC_END
1007
1008 NAME: delay_pool_uses_indirect_client
1009 COMMENT: on|off
1010 TYPE: onoff
1011 IFDEF: FOLLOW_X_FORWARDED_FOR&&USE_DELAY_POOLS
1012 DEFAULT: on
1013 LOC: Config.onoff.delay_pool_uses_indirect_client
1014 DOC_START
1015 Controls whether the indirect client address
1016 (see follow_x_forwarded_for) is used instead of the
1017 direct client address in delay pools.
1018 DOC_END
1019
1020 NAME: log_uses_indirect_client
1021 COMMENT: on|off
1022 TYPE: onoff
1023 IFDEF: FOLLOW_X_FORWARDED_FOR
1024 DEFAULT: on
1025 LOC: Config.onoff.log_uses_indirect_client
1026 DOC_START
1027 Controls whether the indirect client address
1028 (see follow_x_forwarded_for) is used instead of the
1029 direct client address in the access log.
1030 DOC_END
1031
1032 NAME: tproxy_uses_indirect_client
1033 COMMENT: on|off
1034 TYPE: onoff
1035 IFDEF: FOLLOW_X_FORWARDED_FOR&&LINUX_NETFILTER
1036 DEFAULT: off
1037 LOC: Config.onoff.tproxy_uses_indirect_client
1038 DOC_START
1039 Controls whether the indirect client address
1040 (see follow_x_forwarded_for) is used instead of the
1041 direct client address when spoofing the outgoing client.
1042
1043 This has no effect on requests arriving in non-tproxy
1044 mode ports.
1045
1046 SECURITY WARNING: Usage of this option is dangerous
1047 and should not be used trivially. Correct configuration
1048 of follow_x_forewarded_for with a limited set of trusted
1049 sources is required to prevent abuse of your proxy.
1050 DOC_END
1051
1052 NAME: http_access
1053 TYPE: acl_access
1054 LOC: Config.accessList.http
1055 DEFAULT_IF_NONE: deny all
1056 DOC_START
1057 Allowing or Denying access based on defined access lists
1058
1059 Access to the HTTP port:
1060 http_access allow|deny [!]aclname ...
1061
1062 NOTE on default values:
1063
1064 If there are no "access" lines present, the default is to deny
1065 the request.
1066
1067 If none of the "access" lines cause a match, the default is the
1068 opposite of the last line in the list. If the last line was
1069 deny, the default is allow. Conversely, if the last line
1070 is allow, the default will be deny. For these reasons, it is a
1071 good idea to have an "deny all" entry at the end of your access
1072 lists to avoid potential confusion.
1073
1074 This clause supports both fast and slow acl types.
1075 See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
1076
1077 NOCOMMENT_START
1078
1079 #
1080 # Recommended minimum Access Permission configuration:
1081 #
1082 # Only allow cachemgr access from localhost
1083 http_access allow localhost manager
1084 http_access deny manager
1085
1086 # Deny requests to certain unsafe ports
1087 http_access deny !Safe_ports
1088
1089 # Deny CONNECT to other than secure SSL ports
1090 http_access deny CONNECT !SSL_ports
1091
1092 # We strongly recommend the following be uncommented to protect innocent
1093 # web applications running on the proxy server who think the only
1094 # one who can access services on "localhost" is a local user
1095 #http_access deny to_localhost
1096
1097 #
1098 # INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS
1099 #
1100
1101 # Example rule allowing access from your local networks.
1102 # Adapt localnet in the ACL section to list your (internal) IP networks
1103 # from where browsing should be allowed
1104 http_access allow localnet
1105 http_access allow localhost
1106
1107 # And finally deny all other access to this proxy
1108 http_access deny all
1109 NOCOMMENT_END
1110 DOC_END
1111
1112 NAME: adapted_http_access http_access2
1113 TYPE: acl_access
1114 LOC: Config.accessList.adapted_http
1115 DEFAULT: none
1116 DOC_START
1117 Allowing or Denying access based on defined access lists
1118
1119 Essentially identical to http_access, but runs after redirectors
1120 and ICAP/eCAP adaptation. Allowing access control based on their
1121 output.
1122
1123 If not set then only http_access is used.
1124 DOC_END
1125
1126 NAME: http_reply_access
1127 TYPE: acl_access
1128 LOC: Config.accessList.reply
1129 DEFAULT: none
1130 DOC_START
1131 Allow replies to client requests. This is complementary to http_access.
1132
1133 http_reply_access allow|deny [!] aclname ...
1134
1135 NOTE: if there are no access lines present, the default is to allow
1136 all replies
1137
1138 If none of the access lines cause a match the opposite of the
1139 last line will apply. Thus it is good practice to end the rules
1140 with an "allow all" or "deny all" entry.
1141
1142 This clause supports both fast and slow acl types.
1143 See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
1144 DOC_END
1145
1146 NAME: icp_access
1147 TYPE: acl_access
1148 LOC: Config.accessList.icp
1149 DEFAULT_IF_NONE: deny all
1150 DOC_START
1151 Allowing or Denying access to the ICP port based on defined
1152 access lists
1153
1154 icp_access allow|deny [!]aclname ...
1155
1156 See http_access for details
1157
1158 This clause only supports fast acl types.
1159 See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
1160
1161 # Allow ICP queries from local networks only
1162 #icp_access allow localnet
1163 #icp_access deny all
1164 DOC_END
1165
1166 NAME: htcp_access
1167 IFDEF: USE_HTCP
1168 TYPE: acl_access
1169 LOC: Config.accessList.htcp
1170 DEFAULT_IF_NONE: deny all
1171 DOC_START
1172 Allowing or Denying access to the HTCP port based on defined
1173 access lists
1174
1175 htcp_access allow|deny [!]aclname ...
1176
1177 See http_access for details
1178
1179 NOTE: The default if no htcp_access lines are present is to
1180 deny all traffic. This default may cause problems with peers
1181 using the htcp option.
1182
1183 This clause only supports fast acl types.
1184 See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
1185
1186 # Allow HTCP queries from local networks only
1187 #htcp_access allow localnet
1188 #htcp_access deny all
1189 DOC_END
1190
1191 NAME: htcp_clr_access
1192 IFDEF: USE_HTCP
1193 TYPE: acl_access
1194 LOC: Config.accessList.htcp_clr
1195 DEFAULT_IF_NONE: deny all
1196 DOC_START
1197 Allowing or Denying access to purge content using HTCP based
1198 on defined access lists
1199
1200 htcp_clr_access allow|deny [!]aclname ...
1201
1202 See http_access for details
1203
1204 This clause only supports fast acl types.
1205 See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
1206
1207 # Allow HTCP CLR requests from trusted peers
1208 acl htcp_clr_peer src 172.16.1.2
1209 htcp_clr_access allow htcp_clr_peer
1210 DOC_END
1211
1212 NAME: miss_access
1213 TYPE: acl_access
1214 LOC: Config.accessList.miss
1215 DEFAULT: none
1216 DOC_START
1217 Determins whether network access is permitted when satisfying a request.
1218
1219 For example;
1220 to force your neighbors to use you as a sibling instead of
1221 a parent.
1222
1223 acl localclients src 172.16.0.0/16
1224 miss_access allow localclients
1225 miss_access deny !localclients
1226
1227 This means only your local clients are allowed to fetch relayed/MISS
1228 replies from the network and all other clients can only fetch cached
1229 objects (HITs).
1230
1231
1232 The default for this setting allows all clients who passed the
1233 http_access rules to relay via this proxy.
1234
1235 This clause only supports fast acl types.
1236 See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
1237 DOC_END
1238
1239 NAME: ident_lookup_access
1240 TYPE: acl_access
1241 IFDEF: USE_IDENT
1242 DEFAULT_IF_NONE: deny all
1243 LOC: Ident::TheConfig.identLookup
1244 DOC_START
1245 A list of ACL elements which, if matched, cause an ident
1246 (RFC 931) lookup to be performed for this request. For
1247 example, you might choose to always perform ident lookups
1248 for your main multi-user Unix boxes, but not for your Macs
1249 and PCs. By default, ident lookups are not performed for
1250 any requests.
1251
1252 To enable ident lookups for specific client addresses, you
1253 can follow this example:
1254
1255 acl ident_aware_hosts src 198.168.1.0/24
1256 ident_lookup_access allow ident_aware_hosts
1257 ident_lookup_access deny all
1258
1259 Only src type ACL checks are fully supported. A srcdomain
1260 ACL might work at times, but it will not always provide
1261 the correct result.
1262
1263 This clause only supports fast acl types.
1264 See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
1265 DOC_END
1266
1267 NAME: reply_body_max_size
1268 COMMENT: size [acl acl...]
1269 TYPE: acl_b_size_t
1270 DEFAULT: none
1271 LOC: Config.ReplyBodySize
1272 DOC_START
1273 This option specifies the maximum size of a reply body. It can be
1274 used to prevent users from downloading very large files, such as
1275 MP3's and movies. When the reply headers are received, the
1276 reply_body_max_size lines are processed, and the first line where
1277 all (if any) listed ACLs are true is used as the maximum body size
1278 for this reply.
1279
1280 This size is checked twice. First when we get the reply headers,
1281 we check the content-length value. If the content length value exists
1282 and is larger than the allowed size, the request is denied and the
1283 user receives an error message that says "the request or reply
1284 is too large." If there is no content-length, and the reply
1285 size exceeds this limit, the client's connection is just closed
1286 and they will receive a partial reply.
1287
1288 WARNING: downstream caches probably can not detect a partial reply
1289 if there is no content-length header, so they will cache
1290 partial responses and give them out as hits. You should NOT
1291 use this option if you have downstream caches.
1292
1293 WARNING: A maximum size smaller than the size of squid's error messages
1294 will cause an infinite loop and crash squid. Ensure that the smallest
1295 non-zero value you use is greater that the maximum header size plus
1296 the size of your largest error page.
1297
1298 If you set this parameter none (the default), there will be
1299 no limit imposed.
1300
1301 Configuration Format is:
1302 reply_body_max_size SIZE UNITS [acl ...]
1303 ie.
1304 reply_body_max_size 10 MB
1305
1306 DOC_END
1307
1308 COMMENT_START
1309 NETWORK OPTIONS
1310 -----------------------------------------------------------------------------
1311 COMMENT_END
1312
1313 NAME: http_port ascii_port
1314 TYPE: http_port_list
1315 DEFAULT: none
1316 LOC: Config.Sockaddr.http
1317 DOC_START
1318 Usage: port [mode] [options]
1319 hostname:port [mode] [options]
1320 1.2.3.4:port [mode] [options]
1321
1322 The socket addresses where Squid will listen for HTTP client
1323 requests. You may specify multiple socket addresses.
1324 There are three forms: port alone, hostname with port, and
1325 IP address with port. If you specify a hostname or IP
1326 address, Squid binds the socket to that specific
1327 address. Most likely, you do not need to bind to a specific
1328 address, so you can use the port number alone.
1329
1330 If you are running Squid in accelerator mode, you
1331 probably want to listen on port 80 also, or instead.
1332
1333 The -a command line option may be used to specify additional
1334 port(s) where Squid listens for proxy request. Such ports will
1335 be plain proxy ports with no options.
1336
1337 You may specify multiple socket addresses on multiple lines.
1338
1339 Modes:
1340
1341 intercept Support for IP-Layer interception of
1342 outgoing requests without browser settings.
1343 NP: disables authentication and IPv6 on the port.
1344
1345 tproxy Support Linux TPROXY for spoofing outgoing
1346 connections using the client IP address.
1347 NP: disables authentication and maybe IPv6 on the port.
1348
1349 accel Accelerator / reverse proxy mode
1350
1351 ssl-bump Intercept each CONNECT request matching ssl_bump ACL,
1352 establish secure connection with the client and with
1353 the server, decrypt HTTP messages as they pass through
1354 Squid, and treat them as unencrypted HTTP messages,
1355 becoming the man-in-the-middle.
1356
1357 The ssl_bump option is required to fully enable
1358 the SslBump feature.
1359
1360 Omitting the mode flag causes default forward proxy mode to be used.
1361
1362
1363 Accelerator Mode Options:
1364
1365 defaultsite=domainname
1366 What to use for the Host: header if it is not present
1367 in a request. Determines what site (not origin server)
1368 accelerators should consider the default.
1369
1370 no-vhost Disable using HTTP/1.1 Host header for virtual domain support.
1371
1372 protocol= Protocol to reconstruct accelerated requests with.
1373 Defaults to http for http_port and https for
1374 https_port
1375
1376 vport Virtual host port support. Using the http_port number
1377 instead of the port passed on Host: headers.
1378
1379 vport=NN Virtual host port support. Using the specified port
1380 number instead of the port passed on Host: headers.
1381
1382 act-as-origin
1383 Act as if this Squid is the origin server.
1384 This currently means generate new Date: and Expires:
1385 headers on HIT instead of adding Age:.
1386
1387 ignore-cc Ignore request Cache-Control headers.
1388
1389 WARNING: This option violates HTTP specifications if
1390 used in non-accelerator setups.
1391
1392 allow-direct Allow direct forwarding in accelerator mode. Normally
1393 accelerated requests are denied direct forwarding as if
1394 never_direct was used.
1395
1396 WARNING: this option opens accelerator mode to security
1397 vulnerabilities usually only affecting in interception
1398 mode. Make sure to protect forwarding with suitable
1399 http_access rules when using this.
1400
1401
1402 SSL Bump Mode Options:
1403 In addition to these options ssl-bump requires TLS/SSL options.
1404
1405 generate-host-certificates[=<on|off>]
1406 Dynamically create SSL server certificates for the
1407 destination hosts of bumped CONNECT requests.When
1408 enabled, the cert and key options are used to sign
1409 generated certificates. Otherwise generated
1410 certificate will be selfsigned.
1411 If there is a CA certificate lifetime of the generated
1412 certificate equals lifetime of the CA certificate. If
1413 generated certificate is selfsigned lifetime is three
1414 years.
1415 This option is enabled by default when ssl-bump is used.
1416 See the ssl-bump option above for more information.
1417
1418 dynamic_cert_mem_cache_size=SIZE
1419 Approximate total RAM size spent on cached generated
1420 certificates. If set to zero, caching is disabled. The
1421 default value is 4MB. An average XXX-bit certificate
1422 consumes about XXX bytes of RAM.
1423
1424 TLS / SSL Options:
1425
1426 cert= Path to SSL certificate (PEM format).
1427
1428 key= Path to SSL private key file (PEM format)
1429 if not specified, the certificate file is
1430 assumed to be a combined certificate and
1431 key file.
1432
1433 version= The version of SSL/TLS supported
1434 1 automatic (default)
1435 2 SSLv2 only
1436 3 SSLv3 only
1437 4 TLSv1 only
1438
1439 cipher= Colon separated list of supported ciphers.
1440 NOTE: some ciphers such as EDH ciphers depend on
1441 additional settings. If those settings are
1442 omitted the ciphers may be silently ignored
1443 by the OpenSSL library.
1444
1445 options= Various SSL implementation options. The most important
1446 being:
1447 NO_SSLv2 Disallow the use of SSLv2
1448 NO_SSLv3 Disallow the use of SSLv3
1449 NO_TLSv1 Disallow the use of TLSv1
1450 SINGLE_DH_USE Always create a new key when using
1451 temporary/ephemeral DH key exchanges
1452 ALL Enable various bug workarounds
1453 suggested as "harmless" by OpenSSL
1454 Be warned that this reduces SSL/TLS
1455 strength to some attacks.
1456 See OpenSSL SSL_CTX_set_options documentation for a
1457 complete list of options.
1458
1459 clientca= File containing the list of CAs to use when
1460 requesting a client certificate.
1461
1462 cafile= File containing additional CA certificates to
1463 use when verifying client certificates. If unset
1464 clientca will be used.
1465
1466 capath= Directory containing additional CA certificates
1467 and CRL lists to use when verifying client certificates.
1468
1469 crlfile= File of additional CRL lists to use when verifying
1470 the client certificate, in addition to CRLs stored in
1471 the capath. Implies VERIFY_CRL flag below.
1472
1473 dhparams= File containing DH parameters for temporary/ephemeral
1474 DH key exchanges. See OpenSSL documentation for details
1475 on how to create this file.
1476 WARNING: EDH ciphers will be silently disabled if this
1477 option is not set.
1478
1479 sslflags= Various flags modifying the use of SSL:
1480 DELAYED_AUTH
1481 Don't request client certificates
1482 immediately, but wait until acl processing
1483 requires a certificate (not yet implemented).
1484 NO_DEFAULT_CA
1485 Don't use the default CA lists built in
1486 to OpenSSL.
1487 NO_SESSION_REUSE
1488 Don't allow for session reuse. Each connection
1489 will result in a new SSL session.
1490 VERIFY_CRL
1491 Verify CRL lists when accepting client
1492 certificates.
1493 VERIFY_CRL_ALL
1494 Verify CRL lists for all certificates in the
1495 client certificate chain.
1496
1497 sslcontext= SSL session ID context identifier.
1498
1499 Other Options:
1500
1501 connection-auth[=on|off]
1502 use connection-auth=off to tell Squid to prevent
1503 forwarding Microsoft connection oriented authentication
1504 (NTLM, Negotiate and Kerberos)
1505
1506 disable-pmtu-discovery=
1507 Control Path-MTU discovery usage:
1508 off lets OS decide on what to do (default).
1509 transparent disable PMTU discovery when transparent
1510 support is enabled.
1511 always disable always PMTU discovery.
1512
1513 In many setups of transparently intercepting proxies
1514 Path-MTU discovery can not work on traffic towards the
1515 clients. This is the case when the intercepting device
1516 does not fully track connections and fails to forward
1517 ICMP must fragment messages to the cache server. If you
1518 have such setup and experience that certain clients
1519 sporadically hang or never complete requests set
1520 disable-pmtu-discovery option to 'transparent'.
1521
1522 name= Specifies a internal name for the port. Defaults to
1523 the port specification (port or addr:port)
1524
1525 tcpkeepalive[=idle,interval,timeout]
1526 Enable TCP keepalive probes of idle connections.
1527 In seconds; idle is the initial time before TCP starts
1528 probing the connection, interval how often to probe, and
1529 timeout the time before giving up.
1530
1531 If you run Squid on a dual-homed machine with an internal
1532 and an external interface we recommend you to specify the
1533 internal address:port in http_port. This way Squid will only be
1534 visible on the internal address.
1535
1536 NOCOMMENT_START
1537
1538 # Squid normally listens to port 3128
1539 http_port @DEFAULT_HTTP_PORT@
1540 NOCOMMENT_END
1541 DOC_END
1542
1543 NAME: https_port
1544 IFDEF: USE_SSL
1545 TYPE: https_port_list
1546 DEFAULT: none
1547 LOC: Config.Sockaddr.https
1548 DOC_START
1549 Usage: [ip:]port cert=certificate.pem [key=key.pem] [mode] [options...]
1550
1551 The socket address where Squid will listen for client requests made
1552 over TLS or SSL connections. Commonly referred to as HTTPS.
1553
1554 This is most useful for situations where you are running squid in
1555 accelerator mode and you want to do the SSL work at the accelerator level.
1556
1557 You may specify multiple socket addresses on multiple lines,
1558 each with their own SSL certificate and/or options.
1559
1560 Modes:
1561
1562 accel Accelerator / reverse proxy mode
1563
1564 tproxy Support Linux TPROXY for spoofing outgoing
1565 connections using the client IP address.
1566 NP: disables authentication and maybe IPv6 on the port.
1567
1568 ssl-bump Intercept each SSL request matching ssl_bump ACL,
1569 establish secure connection with the client and with
1570 the server, decrypt HTTP messages as they pass through
1571 Squid, and treat them as unencrypted HTTP messages,
1572 becoming the man-in-the-middle.
1573
1574 The ssl_bump option is required to fully enable
1575 the SslBump feature.
1576
1577 Requires tproxy.
1578
1579 Omitting the mode flag causes default forward proxy mode to be used.
1580
1581
1582 See http_port for a list of generic options
1583
1584
1585 SSL Options:
1586
1587 cert= Path to SSL certificate (PEM format).
1588
1589 key= Path to SSL private key file (PEM format)
1590 if not specified, the certificate file is
1591 assumed to be a combined certificate and
1592 key file.
1593
1594 version= The version of SSL/TLS supported
1595 1 automatic (default)
1596 2 SSLv2 only
1597 3 SSLv3 only
1598 4 TLSv1 only
1599
1600 cipher= Colon separated list of supported ciphers.
1601
1602 options= Various SSL engine options. The most important
1603 being:
1604 NO_SSLv2 Disallow the use of SSLv2
1605 NO_SSLv3 Disallow the use of SSLv3
1606 NO_TLSv1 Disallow the use of TLSv1
1607 SINGLE_DH_USE Always create a new key when using
1608 temporary/ephemeral DH key exchanges
1609 See src/ssl_support.c or OpenSSL SSL_CTX_set_options
1610 documentation for a complete list of options.
1611
1612 clientca= File containing the list of CAs to use when
1613 requesting a client certificate.
1614
1615 cafile= File containing additional CA certificates to
1616 use when verifying client certificates. If unset
1617 clientca will be used.
1618
1619 capath= Directory containing additional CA certificates
1620 and CRL lists to use when verifying client certificates.
1621
1622 crlfile= File of additional CRL lists to use when verifying
1623 the client certificate, in addition to CRLs stored in
1624 the capath. Implies VERIFY_CRL flag below.
1625
1626 dhparams= File containing DH parameters for temporary/ephemeral
1627 DH key exchanges.
1628
1629 sslflags= Various flags modifying the use of SSL:
1630 DELAYED_AUTH
1631 Don't request client certificates
1632 immediately, but wait until acl processing
1633 requires a certificate (not yet implemented).
1634 NO_DEFAULT_CA
1635 Don't use the default CA lists built in
1636 to OpenSSL.
1637 NO_SESSION_REUSE
1638 Don't allow for session reuse. Each connection
1639 will result in a new SSL session.
1640 VERIFY_CRL
1641 Verify CRL lists when accepting client
1642 certificates.
1643 VERIFY_CRL_ALL
1644 Verify CRL lists for all certificates in the
1645 client certificate chain.
1646
1647 sslcontext= SSL session ID context identifier.
1648
1649 generate-host-certificates[=<on|off>]
1650 Dynamically create SSL server certificates for the
1651 destination hosts of bumped SSL requests.When
1652 enabled, the cert and key options are used to sign
1653 generated certificates. Otherwise generated
1654 certificate will be selfsigned.
1655 If there is CA certificate life time of generated
1656 certificate equals lifetime of CA certificate. If
1657 generated certificate is selfsigned lifetime is three
1658 years.
1659 This option is enabled by default when SslBump is used.
1660 See the sslBump option above for more information.
1661
1662 dynamic_cert_mem_cache_size=SIZE
1663 Approximate total RAM size spent on cached generated
1664 certificates. If set to zero, caching is disabled. The
1665 default value is 4MB. An average XXX-bit certificate
1666 consumes about XXX bytes of RAM.
1667
1668 See http_port for a list of available options.
1669 DOC_END
1670
1671 NAME: tcp_outgoing_tos tcp_outgoing_ds tcp_outgoing_dscp
1672 TYPE: acl_tos
1673 DEFAULT: none
1674 LOC: Ip::Qos::TheConfig.tosToServer
1675 DOC_START
1676 Allows you to select a TOS/Diffserv value for packets outgoing
1677 on the server side, based on an ACL.
1678
1679 tcp_outgoing_tos ds-field [!]aclname ...
1680
1681 Example where normal_service_net uses the TOS value 0x00
1682 and good_service_net uses 0x20
1683
1684 acl normal_service_net src 10.0.0.0/24
1685 acl good_service_net src 10.0.1.0/24
1686 tcp_outgoing_tos 0x00 normal_service_net
1687 tcp_outgoing_tos 0x20 good_service_net
1688
1689 TOS/DSCP values really only have local significance - so you should
1690 know what you're specifying. For more information, see RFC2474,
1691 RFC2475, and RFC3260.
1692
1693 The TOS/DSCP byte must be exactly that - a octet value 0 - 255, or
1694 "default" to use whatever default your host has. Note that in
1695 practice often only multiples of 4 is usable as the two rightmost bits
1696 have been redefined for use by ECN (RFC 3168 section 23.1).
1697
1698 Processing proceeds in the order specified, and stops at first fully
1699 matching line.
1700 DOC_END
1701
1702 NAME: clientside_tos
1703 TYPE: acl_tos
1704 DEFAULT: none
1705 LOC: Ip::Qos::TheConfig.tosToClient
1706 DOC_START
1707 Allows you to select a TOS/Diffserv value for packets being transmitted
1708 on the client-side, based on an ACL.
1709
1710 clientside_tos ds-field [!]aclname ...
1711
1712 Example where normal_service_net uses the TOS value 0x00
1713 and good_service_net uses 0x20
1714
1715 acl normal_service_net src 10.0.0.0/24
1716 acl good_service_net src 10.0.1.0/24
1717 clientside_tos 0x00 normal_service_net
1718 clientside_tos 0x20 good_service_net
1719
1720 Note: This feature is incompatible with qos_flows. Any TOS values set here
1721 will be overwritten by TOS values in qos_flows.
1722 DOC_END
1723
1724 NAME: tcp_outgoing_mark
1725 TYPE: acl_nfmark
1726 IFDEF: SO_MARK&&USE_LIBCAP
1727 DEFAULT: none
1728 LOC: Ip::Qos::TheConfig.nfmarkToServer
1729 DOC_START
1730 Allows you to apply a Netfilter mark value to outgoing packets
1731 on the server side, based on an ACL.
1732
1733 tcp_outgoing_mark mark-value [!]aclname ...
1734
1735 Example where normal_service_net uses the mark value 0x00
1736 and good_service_net uses 0x20
1737
1738 acl normal_service_net src 10.0.0.0/24
1739 acl good_service_net src 10.0.1.0/24
1740 tcp_outgoing_mark 0x00 normal_service_net
1741 tcp_outgoing_mark 0x20 good_service_net
1742 DOC_END
1743
1744 NAME: clientside_mark
1745 TYPE: acl_nfmark
1746 IFDEF: SO_MARK&&USE_LIBCAP
1747 DEFAULT: none
1748 LOC: Ip::Qos::TheConfig.nfmarkToClient
1749 DOC_START
1750 Allows you to apply a Netfilter mark value to packets being transmitted
1751 on the client-side, based on an ACL.
1752
1753 clientside_mark mark-value [!]aclname ...
1754
1755 Example where normal_service_net uses the mark value 0x00
1756 and good_service_net uses 0x20
1757
1758 acl normal_service_net src 10.0.0.0/24
1759 acl good_service_net src 10.0.1.0/24
1760 clientside_mark 0x00 normal_service_net
1761 clientside_mark 0x20 good_service_net
1762
1763 Note: This feature is incompatible with qos_flows. Any mark values set here
1764 will be overwritten by mark values in qos_flows.
1765 DOC_END
1766
1767 NAME: qos_flows
1768 TYPE: QosConfig
1769 IFDEF: USE_QOS_TOS
1770 DEFAULT: none
1771 LOC: Ip::Qos::TheConfig
1772 DOC_START
1773 Allows you to select a TOS/DSCP value to mark outgoing
1774 connections with, based on where the reply was sourced. For
1775 platforms using netfilter, allows you to set a netfilter mark
1776 value instead of, or in addition to, a TOS value.
1777
1778 TOS values really only have local significance - so you should
1779 know what you're specifying. For more information, see RFC2474,
1780 RFC2475, and RFC3260.
1781
1782 The TOS/DSCP byte must be exactly that - a octet value 0 - 255. Note that
1783 in practice often only multiples of 4 is usable as the two rightmost bits
1784 have been redefined for use by ECN (RFC 3168 section 23.1).
1785
1786 Mark values can be any unsigned 32-bit integer value.
1787
1788 This setting is configured by setting the following values:
1789
1790 tos|mark Whether to set TOS or netfilter mark values
1791
1792 local-hit=0xFF Value to mark local cache hits.
1793
1794 sibling-hit=0xFF Value to mark hits from sibling peers.
1795
1796 parent-hit=0xFF Value to mark hits from parent peers.
1797
1798 miss=0xFF[/mask] Value to mark cache misses. Takes precedence
1799 over the preserve-miss feature (see below), unless
1800 mask is specified, in which case only the bits
1801 specified in the mask are written.
1802
1803 The TOS variant of the following features are only possible on Linux
1804 and require your kernel to be patched with the TOS preserving ZPH
1805 patch, available from http://zph.bratcheda.org
1806 No patch is needed to preserve the netfilter mark, which will work
1807 with all variants of netfilter.
1808
1809 disable-preserve-miss
1810 This option disables the preservation of the TOS or netfilter
1811 mark. By default, the existing TOS or netfilter mark value of
1812 the response coming from the remote server will be retained
1813 and masked with miss-mark.
1814 NOTE: in the case of a netfilter mark, the mark must be set on
1815 the connection (using the CONNMARK target) not on the packet
1816 (MARK target).
1817
1818 miss-mask=0xFF
1819 Allows you to mask certain bits in the TOS or mark value
1820 received from the remote server, before copying the value to
1821 the TOS sent towards clients.
1822 Default for tos: 0xFF (TOS from server is not changed).
1823 Default for mark: 0xFFFFFFFF (mark from server is not changed).
1824
1825 All of these features require the --enable-zph-qos compilation flag
1826 (enabled by default). Netfilter marking also requires the
1827 libnetfilter_conntrack libraries (--with-netfilter-conntrack) and
1828 libcap 2.09+ (--with-libcap).
1829
1830 DOC_END
1831
1832 NAME: tcp_outgoing_address
1833 TYPE: acl_address
1834 DEFAULT: none
1835 LOC: Config.accessList.outgoing_address
1836 DOC_START
1837 Allows you to map requests to different outgoing IP addresses
1838 based on the username or source address of the user making
1839 the request.
1840
1841 tcp_outgoing_address ipaddr [[!]aclname] ...
1842
1843 For example;
1844 Forwarding clients with dedicated IPs for certain subnets.
1845
1846 acl normal_service_net src 10.0.0.0/24
1847 acl good_service_net src 10.0.2.0/24
1848
1849 tcp_outgoing_address 2001:db8::c001 good_service_net
1850 tcp_outgoing_address 10.1.0.2 good_service_net
1851
1852 tcp_outgoing_address 2001:db8::beef normal_service_net
1853 tcp_outgoing_address 10.1.0.1 normal_service_net
1854
1855 tcp_outgoing_address 2001:db8::1
1856 tcp_outgoing_address 10.1.0.3
1857
1858 Processing proceeds in the order specified, and stops at first fully
1859 matching line.
1860
1861 Squid will add an implicit IP version test to each line.
1862 Requests going to IPv4 websites will use the outgoing 10.1.0.* addresses.
1863 Requests going to IPv6 websites will use the outgoing 2001:db8:* addresses.
1864
1865
1866 NOTE: The use of this directive using client dependent ACLs is
1867 incompatible with the use of server side persistent connections. To
1868 ensure correct results it is best to set server_persistent_connections
1869 to off when using this directive in such configurations.
1870
1871 NOTE: The use of this directive to set a local IP on outgoing TCP links
1872 is incompatible with using TPROXY to set client IP out outbound TCP links.
1873 When needing to contact peers use the no-tproxy cache_peer option and the
1874 client_dst_passthru directive re-enable normal forwarding such as this.
1875
1876 DOC_END
1877
1878 NAME: host_verify_strict
1879 TYPE: onoff
1880 DEFAULT: off
1881 LOC: Config.onoff.hostStrictVerify
1882 DOC_START
1883 Regardless of this option setting, when dealing with intercepted
1884 traffic, Squid always verifies that the destination IP address matches
1885 the Host header domain or IP (called 'authority form URL').
1886
1887 This enforcement is performed to satisfy a MUST-level requirement in
1888 RFC 2616 section 14.23: "The Host field value MUST represent the naming
1889 authority of the origin server or gateway given by the original URL".
1890
1891 When set to ON:
1892 Squid always responds with an HTTP 409 (Conflict) error
1893 page and logs a security warning if there is no match.
1894
1895 Squid verifies that the destination IP address matches
1896 the Host header for forward-proxy and reverse-proxy traffic
1897 as well. For those traffic types, Squid also enables the
1898 following checks, comparing the corresponding Host header
1899 and Request-URI components:
1900
1901 * The host names (domain or IP) must be identical,
1902 but valueless or missing Host header disables all checks.
1903 For the two host names to match, both must be either IP
1904 or FQDN.
1905
1906 * Port numbers must be identical, but if a port is missing
1907 the scheme-default port is assumed.
1908
1909
1910 When set to OFF (the default):
1911 Squid allows suspicious requests to continue but logs a
1912 security warning and blocks caching of the response.
1913
1914 * Forward-proxy traffic is not checked at all.
1915
1916 * Reverse-proxy traffic is not checked at all.
1917
1918 * Intercepted traffic which passes verification is handled
1919 normally.
1920
1921 For now it also forces suspicious requests to go DIRECT to the
1922 original destination, overriding client_dst_passthru for
1923 intercepted requests which fail Host: verification.
1924
1925 For now suspicious intercepted CONNECT requests are always
1926 responded to with an HTTP 409 (Conflict) error page.
1927 DOC_END
1928
1929 NAME: client_dst_passthru
1930 TYPE: onoff
1931 DEFAULT: on
1932 LOC: Config.onoff.client_dst_passthru
1933 DOC_START
1934 With NAT or TPROXY intercepted traffic Squid may pass the request
1935 directly to the original client destination IP or seek a faster
1936 source.
1937
1938 This option (on by default) prevents cache_peer and alternative DNS
1939 entries being used on intercepted traffic. Both of which lead to
1940 the security vulnerability outlined below.
1941
1942 SECURITY WARNING:
1943
1944 This directive should only be disabled if cache_peer are required.
1945
1946 As described in CVE-2009-0801 when the Host: header alone is used
1947 to determine the destination of a request it becomes trivial for
1948 malicious scripts on remote websites to bypass browser same-origin
1949 security policy and sandboxing protections.
1950
1951 The cause of this is that such applets are allowed to perform their
1952 own HTTP stack, in which case the same-origin policy of the browser
1953 sandbox only verifies that the applet tries to contact the same IP
1954 as from where it was loaded at the IP level. The Host: header may
1955 be different from the connected IP and approved origin.
1956
1957 DOC_END
1958
1959 COMMENT_START
1960 SSL OPTIONS
1961 -----------------------------------------------------------------------------
1962 COMMENT_END
1963
1964 NAME: ssl_unclean_shutdown
1965 IFDEF: USE_SSL
1966 TYPE: onoff
1967 DEFAULT: off
1968 LOC: Config.SSL.unclean_shutdown
1969 DOC_START
1970 Some browsers (especially MSIE) bugs out on SSL shutdown
1971 messages.
1972 DOC_END
1973
1974 NAME: ssl_engine
1975 IFDEF: USE_SSL
1976 TYPE: string
1977 LOC: Config.SSL.ssl_engine
1978 DEFAULT: none
1979 DOC_START
1980 The OpenSSL engine to use. You will need to set this if you
1981 would like to use hardware SSL acceleration for example.
1982 DOC_END
1983
1984 NAME: sslproxy_client_certificate
1985 IFDEF: USE_SSL
1986 DEFAULT: none
1987 LOC: Config.ssl_client.cert
1988 TYPE: string
1989 DOC_START
1990 Client SSL Certificate to use when proxying https:// URLs
1991 DOC_END
1992
1993 NAME: sslproxy_client_key
1994 IFDEF: USE_SSL
1995 DEFAULT: none
1996 LOC: Config.ssl_client.key
1997 TYPE: string
1998 DOC_START
1999 Client SSL Key to use when proxying https:// URLs
2000 DOC_END
2001
2002 NAME: sslproxy_version
2003 IFDEF: USE_SSL
2004 DEFAULT: 1
2005 LOC: Config.ssl_client.version
2006 TYPE: int
2007 DOC_START
2008 SSL version level to use when proxying https:// URLs
2009 DOC_END
2010
2011 NAME: sslproxy_options
2012 IFDEF: USE_SSL
2013 DEFAULT: none
2014 LOC: Config.ssl_client.options
2015 TYPE: string
2016 DOC_START
2017 SSL implementation options to use when proxying https:// URLs
2018
2019 The most important being:
2020
2021 NO_SSLv2 Disallow the use of SSLv2
2022 NO_SSLv3 Disallow the use of SSLv3
2023 NO_TLSv1 Disallow the use of TLSv1
2024 SINGLE_DH_USE
2025 Always create a new key when using temporary/ephemeral
2026 DH key exchanges
2027 SSL_OP_NO_TICKET
2028 Disable use of RFC5077 session tickets. Some servers
2029 may have problems understanding the TLS extension due
2030 to ambiguous specification in RFC4507.
2031 ALL Enable various bug workarounds suggested as "harmless"
2032 by OpenSSL. Be warned that this may reduce SSL/TLS
2033 strength to some attacks.
2034
2035 See the OpenSSL SSL_CTX_set_options documentation for a
2036 complete list of possible options.
2037 DOC_END
2038
2039 NAME: sslproxy_cipher
2040 IFDEF: USE_SSL
2041 DEFAULT: none
2042 LOC: Config.ssl_client.cipher
2043 TYPE: string
2044 DOC_START
2045 SSL cipher list to use when proxying https:// URLs
2046
2047 Colon separated list of supported ciphers.
2048 DOC_END
2049
2050 NAME: sslproxy_cafile
2051 IFDEF: USE_SSL
2052 DEFAULT: none
2053 LOC: Config.ssl_client.cafile
2054 TYPE: string
2055 DOC_START
2056 file containing CA certificates to use when verifying server
2057 certificates while proxying https:// URLs
2058 DOC_END
2059
2060 NAME: sslproxy_capath
2061 IFDEF: USE_SSL
2062 DEFAULT: none
2063 LOC: Config.ssl_client.capath
2064 TYPE: string
2065 DOC_START
2066 directory containing CA certificates to use when verifying
2067 server certificates while proxying https:// URLs
2068 DOC_END
2069
2070 NAME: ssl_bump
2071 IFDEF: USE_SSL
2072 TYPE: acl_access
2073 LOC: Config.accessList.ssl_bump
2074 DEFAULT: none
2075 DOC_START
2076 This ACL controls which CONNECT requests to an http_port
2077 marked with an sslBump flag are actually "bumped". Please
2078 see the sslBump flag of an http_port option for more details
2079 about decoding proxied SSL connections.
2080
2081 By default, no requests are bumped.
2082
2083 See also: http_port ssl-bump
2084
2085 This clause supports both fast and slow acl types.
2086 See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
2087
2088
2089 # Example: Bump all requests except those originating from localhost and
2090 # those going to webax.com or example.com sites.
2091
2092 acl localhost src 127.0.0.1/32
2093 acl broken_sites dstdomain .webax.com
2094 acl broken_sites dstdomain .example.com
2095 ssl_bump deny localhost
2096 ssl_bump deny broken_sites
2097 ssl_bump allow all
2098 DOC_END
2099
2100 NAME: sslproxy_flags
2101 IFDEF: USE_SSL
2102 DEFAULT: none
2103 LOC: Config.ssl_client.flags
2104 TYPE: string
2105 DOC_START
2106 Various flags modifying the use of SSL while proxying https:// URLs:
2107 DONT_VERIFY_PEER Accept certificates that fail verification.
2108 For refined control, see sslproxy_cert_error.
2109 NO_DEFAULT_CA Don't use the default CA list built in
2110 to OpenSSL.
2111 DOC_END
2112
2113 NAME: sslproxy_cert_error
2114 IFDEF: USE_SSL
2115 DEFAULT: none
2116 LOC: Config.ssl_client.cert_error
2117 TYPE: acl_access
2118 DOC_START
2119 Use this ACL to bypass server certificate validation errors.
2120
2121 For example, the following lines will bypass all validation errors
2122 when talking to servers located at 172.16.0.0/16. All other
2123 validation errors will result in ERR_SECURE_CONNECT_FAIL error.
2124
2125 acl BrokenServersAtTrustedIP dst 172.16.0.0/16
2126 sslproxy_cert_error allow BrokenServersAtTrustedIP
2127 sslproxy_cert_error deny all
2128
2129 This clause only supports fast acl types.
2130 See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
2131 Using slow acl types may result in server crashes
2132
2133 Without this option, all server certificate validation errors
2134 terminate the transaction. Bypassing validation errors is dangerous
2135 because an error usually implies that the server cannot be trusted and
2136 the connection may be insecure.
2137
2138 See also: sslproxy_flags and DONT_VERIFY_PEER.
2139
2140 Default setting: sslproxy_cert_error deny all
2141 DOC_END
2142
2143 NAME: sslproxy_cert_sign
2144 IFDEF: USE_SSL
2145 DEFAULT: none
2146 POSTSCRIPTUM: signUntrusted ssl::certUntrusted
2147 POSTSCRIPTUM: signSelf ssl::certSelfSigned
2148 POSTSCRIPTUM: signTrusted all
2149 TYPE: sslproxy_cert_sign
2150 LOC: Config.ssl_client.cert_sign
2151 DOC_START
2152
2153 sslproxy_cert_sign <adaptation algorithm> acl ...
2154
2155 The following certificate signing algorithms supported:
2156 signTrusted
2157 the current signing algorithm using a configured CA certificate
2158 that is usually placed in and trusted by end-user browsers
2159 signUntrusted
2160 sign to guarantee an X509_V_ERR_CERT_UNTRUSTED browser error
2161 signSelf
2162 sign using a self-signed certificate with the right CN to
2163 generate a X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT error in the
2164 browser.
2165
2166 This clause only supports fast acl types.
2167
2168 When the acl(s) match, the corresponding signing algorithm is used to
2169 generate the certificate. Otherwise, the default signing algorithm used
2170
2171 BUG: The SQUID_X509_V_ERR_DOMAIN_MISMATCH and ssl:certDomainMismatch ssl
2172 errors can not be used with ssl_error acl type.
2173 DOC_END
2174
2175 NAME: sslproxy_cert_adapt
2176 IFDEF: USE_SSL
2177 DEFAULT: none
2178 TYPE: sslproxy_cert_adapt
2179 LOC: Config.ssl_client.cert_adapt
2180 DOC_START
2181
2182 sslproxy_cert_adapt <adaptation algorithm> acl ...
2183
2184 The following certificate adaptation algorithms supported:
2185 setValidAfter
2186 sets the "Not After" property to the "Not After" propery of
2187 the ca certificate used to sign generated certificates
2188 setValidBefore
2189 sets the "Not Before" property to the "Not Before" property of
2190 the ca certificate used to sign generated certificates
2191 setCommonName
2192 sets certificate Subject.CN property to the
2193 host name from specified as a CN parameter (setCommonName{CN})
2194 or, if no explicit CN parameter was specified, extracted from
2195 the CONNECT request. It is a misconfiguration to use setName
2196 without an explicit parameter for intercepted or tproxied SSL
2197 transactions.
2198
2199 This clause only supports fast acl types.
2200
2201 When the acl(s) match, the corresponding adaptation algorithm is
2202 applied to the fake/generated certificate. Otherwise, the
2203 default mimicking action takes place.
2204
2205 BUG: The SQUID_X509_V_ERR_DOMAIN_MISMATCH and ssl:certDomainMismatch ssl
2206 errors can not be used with ssl_error acl type
2207 DOC_END
2208
2209 NAME: sslpassword_program
2210 IFDEF: USE_SSL
2211 DEFAULT: none
2212 LOC: Config.Program.ssl_password
2213 TYPE: string
2214 DOC_START
2215 Specify a program used for entering SSL key passphrases
2216 when using encrypted SSL certificate keys. If not specified
2217 keys must either be unencrypted, or Squid started with the -N
2218 option to allow it to query interactively for the passphrase.
2219
2220 The key file name is given as argument to the program allowing
2221 selection of the right password if you have multiple encrypted
2222 keys.
2223 DOC_END
2224
2225 COMMENT_START
2226 OPTIONS RELATING TO EXTERNAL SSL_CRTD
2227 -----------------------------------------------------------------------------
2228 COMMENT_END
2229
2230 NAME: sslcrtd_program
2231 TYPE: eol
2232 IFDEF: USE_SSL_CRTD
2233 DEFAULT: @DEFAULT_SSL_CRTD@ -s @DEFAULT_SSL_DB_DIR@ -M 4MB
2234 LOC: Ssl::TheConfig.ssl_crtd
2235 DOC_START
2236 Specify the location and options of the executable for ssl_crtd process.
2237 @DEFAULT_SSL_CRTD@ program requires -s and -M parameters
2238 For more information use:
2239 @DEFAULT_SSL_CRTD@ -h
2240 DOC_END
2241
2242 NAME: sslcrtd_children
2243 TYPE: HelperChildConfig
2244 IFDEF: USE_SSL_CRTD
2245 DEFAULT: 32 startup=5 idle=1
2246 LOC: Ssl::TheConfig.ssl_crtdChildren
2247 DOC_START
2248 The maximum number of processes spawn to service ssl server.
2249 The maximum this may be safely set to is 32.
2250
2251 The startup= and idle= options allow some measure of skew in your
2252 tuning.
2253
2254 startup=N
2255
2256 Sets the minimum number of processes to spawn when Squid
2257 starts or reconfigures. When set to zero the first request will
2258 cause spawning of the first child process to handle it.
2259
2260 Starting too few children temporary slows Squid under load while it
2261 tries to spawn enough additional processes to cope with traffic.
2262
2263 idle=N
2264
2265 Sets a minimum of how many processes Squid is to try and keep available
2266 at all times. When traffic begins to rise above what the existing
2267 processes can handle this many more will be spawned up to the maximum
2268 configured. A minimum setting of 1 is required.
2269
2270 You must have at least one ssl_crtd process.
2271 DOC_END
2272
2273 COMMENT_START
2274 OPTIONS WHICH AFFECT THE NEIGHBOR SELECTION ALGORITHM
2275 -----------------------------------------------------------------------------
2276 COMMENT_END
2277
2278 NAME: cache_peer
2279 TYPE: peer
2280 DEFAULT: none
2281 LOC: Config.peers
2282 DOC_START
2283 To specify other caches in a hierarchy, use the format:
2284
2285 cache_peer hostname type http-port icp-port [options]
2286
2287 For example,
2288
2289 # proxy icp
2290 # hostname type port port options
2291 # -------------------- -------- ----- ----- -----------
2292 cache_peer parent.foo.net parent 3128 3130 default
2293 cache_peer sib1.foo.net sibling 3128 3130 proxy-only
2294 cache_peer sib2.foo.net sibling 3128 3130 proxy-only
2295 cache_peer example.com parent 80 0 default
2296 cache_peer cdn.example.com sibling 3128 0
2297
2298 type: either 'parent', 'sibling', or 'multicast'.
2299
2300 proxy-port: The port number where the peer accept HTTP requests.
2301 For other Squid proxies this is usually 3128
2302 For web servers this is usually 80
2303
2304 icp-port: Used for querying neighbor caches about objects.
2305 Set to 0 if the peer does not support ICP or HTCP.
2306 See ICP and HTCP options below for additional details.
2307
2308
2309 ==== ICP OPTIONS ====
2310
2311 You MUST also set icp_port and icp_access explicitly when using these options.
2312 The defaults will prevent peer traffic using ICP.
2313
2314
2315 no-query Disable ICP queries to this neighbor.
2316
2317 multicast-responder
2318 Indicates the named peer is a member of a multicast group.
2319 ICP queries will not be sent directly to the peer, but ICP
2320 replies will be accepted from it.
2321
2322 closest-only Indicates that, for ICP_OP_MISS replies, we'll only forward
2323 CLOSEST_PARENT_MISSes and never FIRST_PARENT_MISSes.
2324
2325 background-ping
2326 To only send ICP queries to this neighbor infrequently.
2327 This is used to keep the neighbor round trip time updated
2328 and is usually used in conjunction with weighted-round-robin.
2329
2330
2331 ==== HTCP OPTIONS ====
2332
2333 You MUST also set htcp_port and htcp_access explicitly when using these options.
2334 The defaults will prevent peer traffic using HTCP.
2335
2336
2337 htcp Send HTCP, instead of ICP, queries to the neighbor.
2338 You probably also want to set the "icp-port" to 4827
2339 instead of 3130. This directive accepts a comma separated
2340 list of options described below.
2341
2342 htcp=oldsquid Send HTCP to old Squid versions (2.5 or earlier).
2343
2344 htcp=no-clr Send HTCP to the neighbor but without
2345 sending any CLR requests. This cannot be used with
2346 only-clr.
2347
2348 htcp=only-clr Send HTCP to the neighbor but ONLY CLR requests.
2349 This cannot be used with no-clr.
2350
2351 htcp=no-purge-clr
2352 Send HTCP to the neighbor including CLRs but only when
2353 they do not result from PURGE requests.
2354
2355 htcp=forward-clr
2356 Forward any HTCP CLR requests this proxy receives to the peer.
2357
2358
2359 ==== PEER SELECTION METHODS ====
2360
2361 The default peer selection method is ICP, with the first responding peer
2362 being used as source. These options can be used for better load balancing.
2363
2364
2365 default This is a parent cache which can be used as a "last-resort"
2366 if a peer cannot be located by any of the peer-selection methods.
2367 If specified more than once, only the first is used.
2368
2369 round-robin Load-Balance parents which should be used in a round-robin
2370 fashion in the absence of any ICP queries.
2371 weight=N can be used to add bias.
2372
2373 weighted-round-robin
2374 Load-Balance parents which should be used in a round-robin
2375 fashion with the frequency of each parent being based on the
2376 round trip time. Closer parents are used more often.
2377 Usually used for background-ping parents.
2378 weight=N can be used to add bias.
2379
2380 carp Load-Balance parents which should be used as a CARP array.
2381 The requests will be distributed among the parents based on the
2382 CARP load balancing hash function based on their weight.
2383
2384 userhash Load-balance parents based on the client proxy_auth or ident username.
2385
2386 sourcehash Load-balance parents based on the client source IP.
2387
2388 multicast-siblings
2389 To be used only for cache peers of type "multicast".
2390 ALL members of this multicast group have "sibling"
2391 relationship with it, not "parent". This is to a multicast
2392 group when the requested object would be fetched only from
2393 a "parent" cache, anyway. It's useful, e.g., when
2394 configuring a pool of redundant Squid proxies, being
2395 members of the same multicast group.
2396
2397
2398 ==== PEER SELECTION OPTIONS ====
2399
2400 weight=N use to affect the selection of a peer during any weighted
2401 peer-selection mechanisms.
2402 The weight must be an integer; default is 1,
2403 larger weights are favored more.
2404 This option does not affect parent selection if a peering
2405 protocol is not in use.
2406
2407 basetime=N Specify a base amount to be subtracted from round trip
2408 times of parents.
2409 It is subtracted before division by weight in calculating
2410 which parent to fectch from. If the rtt is less than the
2411 base time the rtt is set to a minimal value.
2412
2413 ttl=N Specify a TTL to use when sending multicast ICP queries
2414 to this address.
2415 Only useful when sending to a multicast group.
2416 Because we don't accept ICP replies from random
2417 hosts, you must configure other group members as
2418 peers with the 'multicast-responder' option.
2419
2420 no-delay To prevent access to this neighbor from influencing the
2421 delay pools.
2422
2423 digest-url=URL Tell Squid to fetch the cache digest (if digests are
2424 enabled) for this host from the specified URL rather
2425 than the Squid default location.
2426
2427
2428 ==== CARP OPTIONS ====
2429
2430 carp-key=key-specification
2431 use a different key than the full URL to hash against the peer.
2432 the key-specification is a comma-separated list of the keywords
2433 scheme, host, port, path, params
2434 Order is not important.
2435
2436 ==== ACCELERATOR / REVERSE-PROXY OPTIONS ====
2437
2438 originserver Causes this parent to be contacted as an origin server.
2439 Meant to be used in accelerator setups when the peer
2440 is a web server.
2441
2442 forceddomain=name
2443 Set the Host header of requests forwarded to this peer.
2444 Useful in accelerator setups where the server (peer)
2445 expects a certain domain name but clients may request
2446 others. ie example.com or www.example.com
2447
2448 no-digest Disable request of cache digests.
2449
2450 no-netdb-exchange
2451 Disables requesting ICMP RTT database (NetDB).
2452
2453
2454 ==== AUTHENTICATION OPTIONS ====
2455
2456 login=user:password
2457 If this is a personal/workgroup proxy and your parent
2458 requires proxy authentication.
2459
2460 Note: The string can include URL escapes (i.e. %20 for
2461 spaces). This also means % must be written as %%.
2462
2463 login=PASSTHRU
2464 Send login details received from client to this peer.
2465 Both Proxy- and WWW-Authorization headers are passed
2466 without alteration to the peer.
2467 Authentication is not required by Squid for this to work.
2468
2469 Note: This will pass any form of authentication but
2470 only Basic auth will work through a proxy unless the
2471 connection-auth options are also used.
2472
2473 login=PASS Send login details received from client to this peer.
2474 Authentication is not required by this option.
2475
2476 If there are no client-provided authentication headers
2477 to pass on, but username and password are available
2478 from an external ACL user= and password= result tags
2479 they may be sent instead.
2480
2481 Note: To combine this with proxy_auth both proxies must
2482 share the same user database as HTTP only allows for
2483 a single login (one for proxy, one for origin server).
2484 Also be warned this will expose your users proxy
2485 password to the peer. USE WITH CAUTION
2486
2487 login=*:password
2488 Send the username to the upstream cache, but with a
2489 fixed password. This is meant to be used when the peer
2490 is in another administrative domain, but it is still
2491 needed to identify each user.
2492 The star can optionally be followed by some extra
2493 information which is added to the username. This can
2494 be used to identify this proxy to the peer, similar to
2495 the login=username:password option above.
2496
2497 login=NEGOTIATE
2498 If this is a personal/workgroup proxy and your parent
2499 requires a secure proxy authentication.
2500 The first principal from the default keytab or defined by
2501 the environment variable KRB5_KTNAME will be used.
2502
2503 WARNING: The connection may transmit requests from multiple
2504 clients. Negotiate often assumes end-to-end authentication
2505 and a single-client. Which is not strictly true here.
2506
2507 login=NEGOTIATE:principal_name
2508 If this is a personal/workgroup proxy and your parent
2509 requires a secure proxy authentication.
2510 The principal principal_name from the default keytab or
2511 defined by the environment variable KRB5_KTNAME will be
2512 used.
2513
2514 WARNING: The connection may transmit requests from multiple
2515 clients. Negotiate often assumes end-to-end authentication
2516 and a single-client. Which is not strictly true here.
2517
2518 connection-auth=on|off
2519 Tell Squid that this peer does or not support Microsoft
2520 connection oriented authentication, and any such
2521 challenges received from there should be ignored.
2522 Default is auto to automatically determine the status
2523 of the peer.
2524
2525
2526 ==== SSL / HTTPS / TLS OPTIONS ====
2527
2528 ssl Encrypt connections to this peer with SSL/TLS.
2529
2530 sslcert=/path/to/ssl/certificate
2531 A client SSL certificate to use when connecting to
2532 this peer.
2533
2534 sslkey=/path/to/ssl/key
2535 The private SSL key corresponding to sslcert above.
2536 If 'sslkey' is not specified 'sslcert' is assumed to
2537 reference a combined file containing both the
2538 certificate and the key.
2539
2540 sslversion=1|2|3|4
2541 The SSL version to use when connecting to this peer
2542 1 = automatic (default)
2543 2 = SSL v2 only
2544 3 = SSL v3 only
2545 4 = TLS v1 only
2546
2547 sslcipher=... The list of valid SSL ciphers to use when connecting
2548 to this peer.
2549
2550 ssloptions=... Specify various SSL implementation options:
2551
2552 NO_SSLv2 Disallow the use of SSLv2
2553 NO_SSLv3 Disallow the use of SSLv3
2554 NO_TLSv1 Disallow the use of TLSv1
2555 SINGLE_DH_USE
2556 Always create a new key when using
2557 temporary/ephemeral DH key exchanges
2558 ALL Enable various bug workarounds
2559 suggested as "harmless" by OpenSSL
2560 Be warned that this reduces SSL/TLS
2561 strength to some attacks.
2562
2563 See the OpenSSL SSL_CTX_set_options documentation for a
2564 more complete list.
2565
2566 sslcafile=... A file containing additional CA certificates to use
2567 when verifying the peer certificate.
2568
2569 sslcapath=... A directory containing additional CA certificates to
2570 use when verifying the peer certificate.
2571
2572 sslcrlfile=... A certificate revocation list file to use when
2573 verifying the peer certificate.
2574
2575 sslflags=... Specify various flags modifying the SSL implementation:
2576
2577 DONT_VERIFY_PEER
2578 Accept certificates even if they fail to
2579 verify.
2580 NO_DEFAULT_CA
2581 Don't use the default CA list built in
2582 to OpenSSL.
2583 DONT_VERIFY_DOMAIN
2584 Don't verify the peer certificate
2585 matches the server name
2586
2587 ssldomain= The peer name as advertised in it's certificate.
2588 Used for verifying the correctness of the received peer
2589 certificate. If not specified the peer hostname will be
2590 used.
2591
2592 front-end-https
2593 Enable the "Front-End-Https: On" header needed when
2594 using Squid as a SSL frontend in front of Microsoft OWA.
2595 See MS KB document Q307347 for details on this header.
2596 If set to auto the header will only be added if the
2597 request is forwarded as a https:// URL.
2598
2599
2600 ==== GENERAL OPTIONS ====
2601
2602 connect-timeout=N
2603 A peer-specific connect timeout.
2604 Also see the peer_connect_timeout directive.
2605
2606 connect-fail-limit=N
2607 How many times connecting to a peer must fail before
2608 it is marked as down. Default is 10.
2609
2610 allow-miss Disable Squid's use of only-if-cached when forwarding
2611 requests to siblings. This is primarily useful when
2612 icp_hit_stale is used by the sibling. To extensive use
2613 of this option may result in forwarding loops, and you
2614 should avoid having two-way peerings with this option.
2615 For example to deny peer usage on requests from peer
2616 by denying cache_peer_access if the source is a peer.
2617
2618 max-conn=N Limit the amount of connections Squid may open to this
2619 peer. see also
2620
2621 name=xxx Unique name for the peer.
2622 Required if you have multiple peers on the same host
2623 but different ports.
2624 This name can be used in cache_peer_access and similar
2625 directives to dentify the peer.
2626 Can be used by outgoing access controls through the
2627 peername ACL type.
2628
2629 no-tproxy Do not use the client-spoof TPROXY support when forwarding
2630 requests to this peer. Use normal address selection instead.
2631
2632 proxy-only objects fetched from the peer will not be stored locally.
2633
2634 DOC_END
2635
2636 NAME: cache_peer_domain cache_host_domain
2637 TYPE: hostdomain
2638 DEFAULT: none
2639 LOC: none
2640 DOC_START
2641 Use to limit the domains for which a neighbor cache will be
2642 queried. Usage:
2643
2644 cache_peer_domain cache-host domain [domain ...]
2645 cache_peer_domain cache-host !domain
2646
2647 For example, specifying
2648
2649 cache_peer_domain parent.foo.net .edu
2650
2651 has the effect such that UDP query packets are sent to
2652 'bigserver' only when the requested object exists on a
2653 server in the .edu domain. Prefixing the domainname
2654 with '!' means the cache will be queried for objects
2655 NOT in that domain.
2656
2657 NOTE: * Any number of domains may be given for a cache-host,
2658 either on the same or separate lines.
2659 * When multiple domains are given for a particular
2660 cache-host, the first matched domain is applied.
2661 * Cache hosts with no domain restrictions are queried
2662 for all requests.
2663 * There are no defaults.
2664 * There is also a 'cache_peer_access' tag in the ACL
2665 section.
2666 DOC_END
2667
2668 NAME: cache_peer_access
2669 TYPE: peer_access
2670 DEFAULT: none
2671 LOC: none
2672 DOC_START
2673 Similar to 'cache_peer_domain' but provides more flexibility by
2674 using ACL elements.
2675
2676 cache_peer_access cache-host allow|deny [!]aclname ...
2677
2678 The syntax is identical to 'http_access' and the other lists of
2679 ACL elements. See the comments for 'http_access' below, or
2680 the Squid FAQ (http://wiki.squid-cache.org/SquidFaq/SquidAcl).
2681 DOC_END
2682
2683 NAME: neighbor_type_domain
2684 TYPE: hostdomaintype
2685 DEFAULT: none
2686 LOC: none
2687 DOC_START
2688 usage: neighbor_type_domain neighbor parent|sibling domain domain ...
2689
2690 Modifying the neighbor type for specific domains is now
2691 possible. You can treat some domains differently than the
2692 default neighbor type specified on the 'cache_peer' line.
2693 Normally it should only be necessary to list domains which
2694 should be treated differently because the default neighbor type
2695 applies for hostnames which do not match domains listed here.
2696
2697 EXAMPLE:
2698 cache_peer cache.foo.org parent 3128 3130
2699 neighbor_type_domain cache.foo.org sibling .com .net
2700 neighbor_type_domain cache.foo.org sibling .au .de
2701 DOC_END
2702
2703 NAME: dead_peer_timeout
2704 COMMENT: (seconds)
2705 DEFAULT: 10 seconds
2706 TYPE: time_t
2707 LOC: Config.Timeout.deadPeer
2708 DOC_START
2709 This controls how long Squid waits to declare a peer cache
2710 as "dead." If there are no ICP replies received in this
2711 amount of time, Squid will declare the peer dead and not
2712 expect to receive any further ICP replies. However, it
2713 continues to send ICP queries, and will mark the peer as
2714 alive upon receipt of the first subsequent ICP reply.
2715
2716 This timeout also affects when Squid expects to receive ICP
2717 replies from peers. If more than 'dead_peer' seconds have
2718 passed since the last ICP reply was received, Squid will not
2719 expect to receive an ICP reply on the next query. Thus, if
2720 your time between requests is greater than this timeout, you
2721 will see a lot of requests sent DIRECT to origin servers
2722 instead of to your parents.
2723 DOC_END
2724
2725 NAME: forward_max_tries
2726 DEFAULT: 10
2727 TYPE: int
2728 LOC: Config.forward_max_tries
2729 DOC_START
2730 Controls how many different forward paths Squid will try
2731 before giving up. See also forward_timeout.
2732
2733 NOTE: connect_retries (default: none) can make each of these
2734 possible forwarding paths be tried multiple times.
2735 DOC_END
2736
2737 NAME: hierarchy_stoplist
2738 TYPE: wordlist
2739 DEFAULT: none
2740 LOC: Config.hierarchy_stoplist
2741 DOC_START
2742 A list of words which, if found in a URL, cause the object to
2743 be handled directly by this cache. In other words, use this
2744 to not query neighbor caches for certain objects. You may
2745 list this option multiple times.
2746
2747 Example:
2748 hierarchy_stoplist cgi-bin ?
2749
2750 Note: never_direct overrides this option.
2751 DOC_END
2752
2753 COMMENT_START
2754 MEMORY CACHE OPTIONS
2755 -----------------------------------------------------------------------------
2756 COMMENT_END
2757
2758 NAME: cache_mem
2759 COMMENT: (bytes)
2760 TYPE: b_size_t
2761 DEFAULT: 256 MB
2762 LOC: Config.memMaxSize
2763 DOC_START
2764 NOTE: THIS PARAMETER DOES NOT SPECIFY THE MAXIMUM PROCESS SIZE.
2765 IT ONLY PLACES A LIMIT ON HOW MUCH ADDITIONAL MEMORY SQUID WILL
2766 USE AS A MEMORY CACHE OF OBJECTS. SQUID USES MEMORY FOR OTHER
2767 THINGS AS WELL. SEE THE SQUID FAQ SECTION 8 FOR DETAILS.
2768
2769 'cache_mem' specifies the ideal amount of memory to be used
2770 for:
2771 * In-Transit objects
2772 * Hot Objects
2773 * Negative-Cached objects
2774
2775 Data for these objects are stored in 4 KB blocks. This
2776 parameter specifies the ideal upper limit on the total size of
2777 4 KB blocks allocated. In-Transit objects take the highest
2778 priority.
2779
2780 In-transit objects have priority over the others. When
2781 additional space is needed for incoming data, negative-cached
2782 and hot objects will be released. In other words, the
2783 negative-cached and hot objects will fill up any unused space
2784 not needed for in-transit objects.
2785
2786 If circumstances require, this limit will be exceeded.
2787 Specifically, if your incoming request rate requires more than
2788 'cache_mem' of memory to hold in-transit objects, Squid will
2789 exceed this limit to satisfy the new requests. When the load
2790 decreases, blocks will be freed until the high-water mark is
2791 reached. Thereafter, blocks will be used to store hot
2792 objects.
2793
2794 If shared memory caching is enabled, Squid does not use the shared
2795 cache space for in-transit objects, but they still consume as much
2796 local memory as they need. For more details about the shared memory
2797 cache, see memory_cache_shared.
2798 DOC_END
2799
2800 NAME: maximum_object_size_in_memory
2801 COMMENT: (bytes)
2802 TYPE: b_size_t
2803 DEFAULT: 512 KB
2804 LOC: Config.Store.maxInMemObjSize
2805 DOC_START
2806 Objects greater than this size will not be attempted to kept in
2807 the memory cache. This should be set high enough to keep objects
2808 accessed frequently in memory to improve performance whilst low
2809 enough to keep larger objects from hoarding cache_mem.
2810 DOC_END
2811
2812 NAME: memory_cache_shared
2813 COMMENT: on|off
2814 TYPE: YesNoNone
2815 LOC: Config.memShared
2816 DEFAULT: none
2817 DEFAULT_DOC: "on" where supported if doing memory caching with multiple SMP workers.
2818 DOC_START
2819 Controls whether the memory cache is shared among SMP workers.
2820
2821 The shared memory cache is meant to occupy cache_mem bytes and replace
2822 the non-shared memory cache, although some entities may still be
2823 cached locally by workers for now (e.g., internal and in-transit
2824 objects may be served from a local memory cache even if shared memory
2825 caching is enabled).
2826
2827 By default, the memory cache is shared if and only if all of the
2828 following conditions are satisfied: Squid runs in SMP mode with
2829 multiple workers, cache_mem is positive, and Squid environment
2830 supports required IPC primitives (e.g., POSIX shared memory segments
2831 and GCC-style atomic operations).
2832
2833 To avoid blocking locks, shared memory uses opportunistic algorithms
2834 that do not guarantee that every cachable entity that could have been
2835 shared among SMP workers will actually be shared.
2836
2837 Currently, entities exceeding 32KB in size cannot be shared.
2838 DOC_END
2839
2840 NAME: memory_cache_mode
2841 TYPE: memcachemode
2842 LOC: Config
2843 DEFAULT: always
2844 DOC_START
2845 Controls which objects to keep in the memory cache (cache_mem)
2846
2847 always Keep most recently fetched objects in memory (default)
2848
2849 disk Only disk cache hits are kept in memory, which means
2850 an object must first be cached on disk and then hit
2851 a second time before cached in memory.
2852
2853 network Only objects fetched from network is kept in memory
2854 DOC_END
2855
2856 NAME: memory_replacement_policy
2857 TYPE: removalpolicy
2858 LOC: Config.memPolicy
2859 DEFAULT: lru
2860 DOC_START
2861 The memory replacement policy parameter determines which
2862 objects are purged from memory when memory space is needed.
2863
2864 See cache_replacement_policy for details.
2865 DOC_END
2866
2867 COMMENT_START
2868 DISK CACHE OPTIONS
2869 -----------------------------------------------------------------------------
2870 COMMENT_END
2871
2872 NAME: cache_replacement_policy
2873 TYPE: removalpolicy
2874 LOC: Config.replPolicy
2875 DEFAULT: lru
2876 DOC_START
2877 The cache replacement policy parameter determines which
2878 objects are evicted (replaced) when disk space is needed.
2879
2880 lru : Squid's original list based LRU policy
2881 heap GDSF : Greedy-Dual Size Frequency
2882 heap LFUDA: Least Frequently Used with Dynamic Aging
2883 heap LRU : LRU policy implemented using a heap
2884
2885 Applies to any cache_dir lines listed below this.
2886
2887 The LRU policies keeps recently referenced objects.
2888
2889 The heap GDSF policy optimizes object hit rate by keeping smaller
2890 popular objects in cache so it has a better chance of getting a
2891 hit. It achieves a lower byte hit rate than LFUDA though since
2892 it evicts larger (possibly popular) objects.
2893
2894 The heap LFUDA policy keeps popular objects in cache regardless of
2895 their size and thus optimizes byte hit rate at the expense of
2896 hit rate since one large, popular object will prevent many
2897 smaller, slightly less popular objects from being cached.
2898
2899 Both policies utilize a dynamic aging mechanism that prevents
2900 cache pollution that can otherwise occur with frequency-based
2901 replacement policies.
2902
2903 NOTE: if using the LFUDA replacement policy you should increase
2904 the value of maximum_object_size above its default of 4096 KB to
2905 to maximize the potential byte hit rate improvement of LFUDA.
2906
2907 For more information about the GDSF and LFUDA cache replacement
2908 policies see http://www.hpl.hp.com/techreports/1999/HPL-1999-69.html
2909 and http://fog.hpl.external.hp.com/techreports/98/HPL-98-173.html.
2910 DOC_END
2911
2912 NAME: cache_dir
2913 TYPE: cachedir
2914 DEFAULT: none
2915 LOC: Config.cacheSwap
2916 DOC_START
2917 Usage:
2918
2919 cache_dir Type Directory-Name Fs-specific-data [options]
2920
2921 You can specify multiple cache_dir lines to spread the
2922 cache among different disk partitions.
2923
2924 Type specifies the kind of storage system to use. Only "ufs"
2925 is built by default. To enable any of the other storage systems
2926 see the --enable-storeio configure option.
2927
2928 'Directory' is a top-level directory where cache swap
2929 files will be stored. If you want to use an entire disk
2930 for caching, this can be the mount-point directory.
2931 The directory must exist and be writable by the Squid
2932 process. Squid will NOT create this directory for you.
2933
2934 In SMP configurations, cache_dir must not precede the workers option
2935 and should use configuration macros or conditionals to give each
2936 worker interested in disk caching a dedicated cache directory.
2937
2938 The ufs store type:
2939
2940 "ufs" is the old well-known Squid storage format that has always
2941 been there.
2942
2943 cache_dir ufs Directory-Name Mbytes L1 L2 [options]
2944
2945 'Mbytes' is the amount of disk space (MB) to use under this
2946 directory. The default is 100 MB. Change this to suit your
2947 configuration. Do NOT put the size of your disk drive here.
2948 Instead, if you want Squid to use the entire disk drive,
2949 subtract 20% and use that value.
2950
2951 'L1' is the number of first-level subdirectories which
2952 will be created under the 'Directory'. The default is 16.
2953
2954 'L2' is the number of second-level subdirectories which
2955 will be created under each first-level directory. The default
2956 is 256.
2957
2958 The aufs store type:
2959
2960 "aufs" uses the same storage format as "ufs", utilizing
2961 POSIX-threads to avoid blocking the main Squid process on
2962 disk-I/O. This was formerly known in Squid as async-io.
2963
2964 cache_dir aufs Directory-Name Mbytes L1 L2 [options]
2965
2966 see argument descriptions under ufs above
2967
2968 The diskd store type:
2969
2970 "diskd" uses the same storage format as "ufs", utilizing a
2971 separate process to avoid blocking the main Squid process on
2972 disk-I/O.
2973
2974 cache_dir diskd Directory-Name Mbytes L1 L2 [options] [Q1=n] [Q2=n]
2975
2976 see argument descriptions under ufs above
2977
2978 Q1 specifies the number of unacknowledged I/O requests when Squid
2979 stops opening new files. If this many messages are in the queues,
2980 Squid won't open new files. Default is 64
2981
2982 Q2 specifies the number of unacknowledged messages when Squid
2983 starts blocking. If this many messages are in the queues,
2984 Squid blocks until it receives some replies. Default is 72
2985
2986 When Q1 < Q2 (the default), the cache directory is optimized
2987 for lower response time at the expense of a decrease in hit
2988 ratio. If Q1 > Q2, the cache directory is optimized for
2989 higher hit ratio at the expense of an increase in response
2990 time.
2991
2992 The rock store type:
2993
2994 cache_dir rock Directory-Name Mbytes <max-size=bytes> [options]
2995
2996 The Rock Store type is a database-style storage. All cached
2997 entries are stored in a "database" file, using fixed-size slots,
2998 one entry per slot. The database size is specified in MB. The
2999 slot size is specified in bytes using the max-size option. See
3000 below for more info on the max-size option.
3001
3002 swap-timeout=msec: Squid will not start writing a miss to or
3003 reading a hit from disk if it estimates that the swap operation
3004 will take more than the specified number of milliseconds. By
3005 default and when set to zero, disables the disk I/O time limit
3006 enforcement. Ignored when using blocking I/O module because
3007 blocking synchronous I/O does not allow Squid to estimate the
3008 expected swap wait time.
3009
3010 max-swap-rate=swaps/sec: Artificially limits disk access using
3011 the specified I/O rate limit. Swap out requests that
3012 would cause the average I/O rate to exceed the limit are
3013 delayed. Individual swap in requests (i.e., hits or reads) are
3014 not delayed, but they do contribute to measured swap rate and
3015 since they are placed in the same FIFO queue as swap out
3016 requests, they may wait longer if max-swap-rate is smaller.
3017 This is necessary on file systems that buffer "too
3018 many" writes and then start blocking Squid and other processes
3019 while committing those writes to disk. Usually used together
3020 with swap-timeout to avoid excessive delays and queue overflows
3021 when disk demand exceeds available disk "bandwidth". By default
3022 and when set to zero, disables the disk I/O rate limit
3023 enforcement. Currently supported by IpcIo module only.
3024
3025
3026 The coss store type:
3027
3028 NP: COSS filesystem in Squid-3 has been deemed too unstable for
3029 production use and has thus been removed from this release.
3030 We hope that it can be made usable again soon.
3031
3032 block-size=n defines the "block size" for COSS cache_dir's.
3033 Squid uses file numbers as block numbers. Since file numbers
3034 are limited to 24 bits, the block size determines the maximum
3035 size of the COSS partition. The default is 512 bytes, which
3036 leads to a maximum cache_dir size of 512<<24, or 8 GB. Note
3037 you should not change the coss block size after Squid
3038 has written some objects to the cache_dir.
3039
3040 The coss file store has changed from 2.5. Now it uses a file
3041 called 'stripe' in the directory names in the config - and
3042 this will be created by squid -z.
3043
3044 Common options:
3045
3046 no-store, no new objects should be stored to this cache_dir
3047
3048 min-size=n, refers to the min object size in bytes this cache_dir
3049 will accept. It's used to restrict a cache_dir to only store
3050 large objects (e.g. aufs) while other storedirs are optimized
3051 for smaller objects (e.g. COSS). Defaults to 0.
3052
3053 max-size=n, refers to the max object size in bytes this cache_dir
3054 supports. It is used to select the cache_dir to store the object.
3055 Note: To make optimal use of the max-size limits you should order
3056 the cache_dir lines with the smallest max-size value first and the
3057 ones with no max-size specification last.
3058
3059 Note for coss, max-size must be less than COSS_MEMBUF_SZ,
3060 which can be changed with the --with-coss-membuf-size=N configure
3061 option.
3062 NOCOMMENT_START
3063
3064 # Uncomment and adjust the following to add a disk cache directory.
3065 #cache_dir ufs @DEFAULT_SWAP_DIR@ 100 16 256
3066 NOCOMMENT_END
3067 DOC_END
3068
3069 NAME: store_dir_select_algorithm
3070 TYPE: string
3071 LOC: Config.store_dir_select_algorithm
3072 DEFAULT: least-load
3073 DOC_START
3074 Set this to 'round-robin' as an alternative.
3075 DOC_END
3076
3077 NAME: max_open_disk_fds
3078 TYPE: int
3079 LOC: Config.max_open_disk_fds
3080 DEFAULT: 0
3081 DOC_START
3082 To avoid having disk as the I/O bottleneck Squid can optionally
3083 bypass the on-disk cache if more than this amount of disk file
3084 descriptors are open.
3085
3086 A value of 0 indicates no limit.
3087 DOC_END
3088
3089 NAME: minimum_object_size
3090 COMMENT: (bytes)
3091 TYPE: b_int64_t
3092 DEFAULT: 0 KB
3093 LOC: Config.Store.minObjectSize
3094 DOC_START
3095 Objects smaller than this size will NOT be saved on disk. The
3096 value is specified in kilobytes, and the default is 0 KB, which
3097 means there is no minimum.
3098 DOC_END
3099
3100 NAME: maximum_object_size
3101 COMMENT: (bytes)
3102 TYPE: b_int64_t
3103 DEFAULT: 4096 KB
3104 LOC: Config.Store.maxObjectSize
3105 DOC_START
3106 Objects larger than this size will NOT be saved on disk. The
3107 value is specified in kilobytes, and the default is 4MB. If
3108 you wish to get a high BYTES hit ratio, you should probably
3109 increase this (one 32 MB object hit counts for 3200 10KB
3110 hits). If you wish to increase speed more than your want to
3111 save bandwidth you should leave this low.
3112
3113 NOTE: if using the LFUDA replacement policy you should increase
3114 this value to maximize the byte hit rate improvement of LFUDA!
3115 See replacement_policy below for a discussion of this policy.
3116 DOC_END
3117
3118 NAME: cache_swap_low
3119 COMMENT: (percent, 0-100)
3120 TYPE: int
3121 DEFAULT: 90
3122 LOC: Config.Swap.lowWaterMark
3123 DOC_NONE
3124
3125 NAME: cache_swap_high
3126 COMMENT: (percent, 0-100)
3127 TYPE: int
3128 DEFAULT: 95
3129 LOC: Config.Swap.highWaterMark
3130 DOC_START
3131
3132 The low- and high-water marks for cache object replacement.
3133 Replacement begins when the swap (disk) usage is above the
3134 low-water mark and attempts to maintain utilization near the
3135 low-water mark. As swap utilization gets close to high-water
3136 mark object eviction becomes more aggressive. If utilization is
3137 close to the low-water mark less replacement is done each time.
3138
3139 Defaults are 90% and 95%. If you have a large cache, 5% could be
3140 hundreds of MB. If this is the case you may wish to set these
3141 numbers closer together.
3142 DOC_END
3143
3144 COMMENT_START
3145 LOGFILE OPTIONS
3146 -----------------------------------------------------------------------------
3147 COMMENT_END
3148
3149 NAME: logformat
3150 TYPE: logformat
3151 LOC: Log::TheConfig
3152 DEFAULT: none
3153 DOC_START
3154 Usage:
3155
3156 logformat <name> <format specification>
3157
3158 Defines an access log format.
3159
3160 The <format specification> is a string with embedded % format codes
3161
3162 % format codes all follow the same basic structure where all but
3163 the formatcode is optional. Output strings are automatically escaped
3164 as required according to their context and the output format
3165 modifiers are usually not needed, but can be specified if an explicit
3166 output format is desired.
3167
3168 % ["|[|'|#] [-] [[0]width] [{argument}] formatcode
3169
3170 " output in quoted string format
3171 [ output in squid text log format as used by log_mime_hdrs
3172 # output in URL quoted format
3173 ' output as-is
3174
3175 - left aligned
3176
3177 width minimum and/or maximum field width:
3178 [width_min][.width_max]
3179 When minimum starts with 0, the field is zero-padded.
3180 String values exceeding maximum width are truncated.
3181
3182 {arg} argument such as header name etc
3183
3184 Format codes:
3185
3186 % a literal % character
3187 sn Unique sequence number per log line entry
3188 err_code The ID of an error response served by Squid or
3189 a similar internal error identifier.
3190 err_detail Additional err_code-dependent error information.
3191
3192 Connection related format codes:
3193
3194 >a Client source IP address
3195 >A Client FQDN
3196 >p Client source port
3197 >eui Client source EUI (MAC address, EUI-48 or EUI-64 identifier)
3198 >la Local IP address the client connected to
3199 >lp Local port number the client connected to
3200
3201 la Local listening IP address the client connection was connected to.
3202 lp Local listening port number the client connection was connected to.
3203
3204 <a Server IP address of the last server or peer connection
3205 <A Server FQDN or peer name
3206 <p Server port number of the last server or peer connection
3207 <la Local IP address of the last server or peer connection
3208 <lp Local port number of the last server or peer connection
3209
3210 Time related format codes:
3211
3212 ts Seconds since epoch
3213 tu subsecond time (milliseconds)
3214 tl Local time. Optional strftime format argument
3215 default %d/%b/%Y:%H:%M:%S %z
3216 tg GMT time. Optional strftime format argument
3217 default %d/%b/%Y:%H:%M:%S %z
3218 tr Response time (milliseconds)
3219 dt Total time spent making DNS lookups (milliseconds)
3220
3221 Access Control related format codes:
3222
3223 et Tag returned by external acl
3224 ea Log string returned by external acl
3225 un User name (any available)
3226 ul User name from authentication
3227 ue User name from external acl helper
3228 ui User name from ident
3229 us User name from SSL
3230
3231 HTTP related format codes:
3232
3233 [http::]>h Original request header. Optional header name argument
3234 on the format header[:[separator]element]
3235 [http::]>ha The HTTP request headers after adaptation and redirection.
3236 Optional header name argument as for >h
3237 [http::]<h Reply header. Optional header name argument
3238 as for >h
3239 [http::]>Hs HTTP status code sent to the client
3240 [http::]<Hs HTTP status code received from the next hop
3241 [http::]<bs Number of HTTP-equivalent message body bytes
3242 received from the next hop, excluding chunked
3243 transfer encoding and control messages.
3244 Generated FTP/Gopher listings are treated as
3245 received bodies.
3246 [http::]mt MIME content type
3247 [http::]rm Request method (GET/POST etc)
3248 [http::]>rm Request method from client
3249 [http::]<rm Request method sent to server or peer
3250 [http::]ru Request URL from client (historic, filtered for logging)
3251 [http::]>ru Request URL from client
3252 [http::]<ru Request URL sent to server or peer
3253 [http::]rp Request URL-Path excluding hostname
3254 [http::]>rp Request URL-Path excluding hostname from client
3255 [http::]<rp Request URL-Path excluding hostname sento to server or peer
3256 [http::]rv Request protocol version
3257 [http::]>rv Request protocol version from client
3258 [http::]<rv Request protocol version sent to server or peer
3259 [http::]<st Sent reply size including HTTP headers
3260 [http::]>st Received request size including HTTP headers. In the
3261 case of chunked requests the chunked encoding metadata
3262 are not included
3263 [http::]>sh Received HTTP request headers size
3264 [http::]<sh Sent HTTP reply headers size
3265 [http::]st Request+Reply size including HTTP headers
3266 [http::]<sH Reply high offset sent
3267 [http::]<sS Upstream object size
3268 [http::]<pt Peer response time in milliseconds. The timer starts
3269 when the last request byte is sent to the next hop
3270 and stops when the last response byte is received.
3271 [http::]<tt Total server-side time in milliseconds. The timer
3272 starts with the first connect request (or write I/O)
3273 sent to the first selected peer. The timer stops
3274 with the last I/O with the last peer.
3275
3276 Squid handling related format codes:
3277
3278 Ss Squid request status (TCP_MISS etc)
3279 Sh Squid hierarchy status (DEFAULT_PARENT etc)
3280
3281 If ICAP is enabled, the following code becomes available (as
3282 well as ICAP log codes documented with the icap_log option):
3283
3284 icap::tt Total ICAP processing time for the HTTP
3285 transaction. The timer ticks when ICAP
3286 ACLs are checked and when ICAP
3287 transaction is in progress.
3288
3289 If adaptation is enabled the following three codes become available:
3290
3291 adapt::<last_h The header of the last ICAP response or
3292 meta-information from the last eCAP
3293 transaction related to the HTTP transaction.
3294 Like <h, accepts an optional header name
3295 argument.
3296
3297 adapt::sum_trs Summed adaptation transaction response
3298 times recorded as a comma-separated list in
3299 the order of transaction start time. Each time
3300 value is recorded as an integer number,
3301 representing response time of one or more
3302 adaptation (ICAP or eCAP) transaction in
3303 milliseconds. When a failed transaction is
3304 being retried or repeated, its time is not
3305 logged individually but added to the
3306 replacement (next) transaction. See also:
3307 adapt::all_trs.
3308
3309 adapt::all_trs All adaptation transaction response times.
3310 Same as adaptation_strs but response times of
3311 individual transactions are never added
3312 together. Instead, all transaction response
3313 times are recorded individually.
3314
3315 You can prefix adapt::*_trs format codes with adaptation
3316 service name in curly braces to record response time(s) specific
3317 to that service. For example: %{my_service}adapt::sum_trs
3318
3319 The default formats available (which do not need re-defining) are:
3320
3321 logformat squid %ts.%03tu %6tr %>a %Ss/%03>Hs %<st %rm %ru %[un %Sh/%<a %mt
3322 logformat common %>a %[ui %[un [%tl] "%rm %ru HTTP/%rv" %>Hs %<st %Ss:%Sh
3323 logformat combined %>a %[ui %[un [%tl] "%rm %ru HTTP/%rv" %>Hs %<st "%{Referer}>h" "%{User-Agent}>h" %Ss:%Sh
3324 logformat referrer %ts.%03tu %>a %{Referer}>h %ru
3325 logformat useragent %>a [%tl] "%{User-Agent}>h"
3326
3327 NOTE: When the log_mime_hdrs directive is set to ON.
3328 The squid, common and combined formats have a safely encoded copy
3329 of the mime headers appended to each line within a pair of brackets.
3330
3331 NOTE: The common and combined formats are not quite true to the Apache definition.
3332 The logs from Squid contain an extra status and hierarchy code appended.
3333
3334 DOC_END
3335
3336 NAME: access_log cache_access_log
3337 TYPE: access_log
3338 LOC: Config.Log.accesslogs
3339 DEFAULT_IF_NONE: daemon:@DEFAULT_ACCESS_LOG@ squid
3340 DOC_START
3341 These files log client request activities. Has a line every HTTP or
3342 ICP request. The format is:
3343 access_log <module>:<place> [<logformat name> [acl acl ...]]
3344 access_log none [acl acl ...]]
3345
3346 Will log to the specified module:place using the specified format (which
3347 must be defined in a logformat directive) those entries which match
3348 ALL the acl's specified (which must be defined in acl clauses).
3349 If no acl is specified, all requests will be logged to this destination.
3350
3351 ===== Modules Currently available =====
3352
3353 none Do not log any requests matching these ACL.
3354 Do not specify Place or logformat name.
3355
3356 stdio Write each log line to disk immediately at the completion of
3357 each request.
3358 Place: the filename and path to be written.
3359
3360 daemon Very similar to stdio. But instead of writing to disk the log
3361 line is passed to a daemon helper for asychronous handling instead.
3362 Place: varies depending on the daemon.
3363
3364 log_file_daemon Place: the file name and path to be written.
3365
3366 syslog To log each request via syslog facility.
3367 Place: The syslog facility and priority level for these entries.
3368 Place Format: facility.priority
3369
3370 where facility could be any of:
3371 authpriv, daemon, local0 ... local7 or user.
3372
3373 And priority could be any of:
3374 err, warning, notice, info, debug.
3375
3376 udp To send each log line as text data to a UDP receiver.
3377 Place: The destination host name or IP and port.
3378 Place Format: //host:port
3379
3380 tcp To send each log line as text data to a TCP receiver.
3381 Place: The destination host name or IP and port.
3382 Place Format: //host:port
3383
3384 Default:
3385 access_log daemon:@DEFAULT_ACCESS_LOG@ squid
3386 DOC_END
3387
3388 NAME: icap_log
3389 TYPE: access_log
3390 IFDEF: ICAP_CLIENT
3391 LOC: Config.Log.icaplogs
3392 DEFAULT: none
3393 DOC_START
3394 ICAP log files record ICAP transaction summaries, one line per
3395 transaction.
3396
3397 The icap_log option format is:
3398 icap_log <filepath> [<logformat name> [acl acl ...]]
3399 icap_log none [acl acl ...]]
3400
3401 Please see access_log option documentation for details. The two
3402 kinds of logs share the overall configuration approach and many
3403 features.
3404
3405 ICAP processing of a single HTTP message or transaction may
3406 require multiple ICAP transactions. In such cases, multiple
3407 ICAP transaction log lines will correspond to a single access
3408 log line.
3409
3410 ICAP log uses logformat codes that make sense for an ICAP
3411 transaction. Header-related codes are applied to the HTTP header
3412 embedded in an ICAP server response, with the following caveats:
3413 For REQMOD, there is no HTTP response header unless the ICAP
3414 server performed request satisfaction. For RESPMOD, the HTTP
3415 request header is the header sent to the ICAP server. For
3416 OPTIONS, there are no HTTP headers.
3417
3418 The following format codes are also available for ICAP logs:
3419
3420 icap::<A ICAP server IP address. Similar to <A.
3421
3422 icap::<service_name ICAP service name from the icap_service
3423 option in Squid configuration file.
3424
3425 icap::ru ICAP Request-URI. Similar to ru.
3426
3427 icap::rm ICAP request method (REQMOD, RESPMOD, or
3428 OPTIONS). Similar to existing rm.
3429
3430 icap::>st Bytes sent to the ICAP server (TCP payload
3431 only; i.e., what Squid writes to the socket).
3432
3433 icap::<st Bytes received from the ICAP server (TCP
3434 payload only; i.e., what Squid reads from
3435 the socket).
3436
3437 icap::<bs Number of message body bytes received from the
3438 ICAP server. ICAP message body, if any, usually
3439 includes encapsulated HTTP message headers and
3440 possibly encapsulated HTTP message body. The
3441 HTTP body part is dechunked before its size is
3442 computed.
3443
3444 icap::tr Transaction response time (in
3445 milliseconds). The timer starts when
3446 the ICAP transaction is created and
3447 stops when the transaction is completed.
3448 Similar to tr.
3449
3450 icap::tio Transaction I/O time (in milliseconds). The
3451 timer starts when the first ICAP request
3452 byte is scheduled for sending. The timers
3453 stops when the last byte of the ICAP response
3454 is received.
3455
3456 icap::to Transaction outcome: ICAP_ERR* for all
3457 transaction errors, ICAP_OPT for OPTION
3458 transactions, ICAP_ECHO for 204
3459 responses, ICAP_MOD for message
3460 modification, and ICAP_SAT for request
3461 satisfaction. Similar to Ss.
3462
3463 icap::Hs ICAP response status code. Similar to Hs.
3464
3465 icap::>h ICAP request header(s). Similar to >h.
3466
3467 icap::<h ICAP response header(s). Similar to <h.
3468
3469 The default ICAP log format, which can be used without an explicit
3470 definition, is called icap_squid:
3471
3472 logformat icap_squid %ts.%03tu %6icap::tr %>a %icap::to/%03icap::Hs %icap::<size %icap::rm %icap::ru% %un -/%icap::<A -
3473
3474 See also: logformat, log_icap, and %adapt::<last_h
3475 DOC_END
3476
3477 NAME: logfile_daemon
3478 TYPE: string
3479 DEFAULT: @DEFAULT_LOGFILED@
3480 LOC: Log::TheConfig.logfile_daemon
3481 DOC_START
3482 Specify the path to the logfile-writing daemon. This daemon is
3483 used to write the access and store logs, if configured.
3484
3485 Squid sends a number of commands to the log daemon:
3486 L<data>\n - logfile data
3487 R\n - rotate file
3488 T\n - truncate file
3489 O\n - reopen file
3490 F\n - flush file
3491 r<n>\n - set rotate count to <n>
3492 b<n>\n - 1 = buffer output, 0 = don't buffer output
3493
3494 No responses is expected.
3495 DOC_END
3496
3497 NAME: log_access
3498 TYPE: acl_access
3499 LOC: Config.accessList.log
3500 DEFAULT: none
3501 COMMENT: allow|deny acl acl...
3502 DOC_START
3503 This options allows you to control which requests gets logged
3504 to access.log (see access_log directive). Requests denied for
3505 logging will also not be accounted for in performance counters.
3506
3507 This clause only supports fast acl types.
3508 See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
3509 DOC_END
3510
3511 NAME: log_icap
3512 TYPE: acl_access
3513 IFDEF: ICAP_CLIENT
3514 LOC: Config.accessList.icap
3515 DEFAULT: none
3516 DOC_START
3517 This options allows you to control which requests get logged
3518 to icap.log. See the icap_log directive for ICAP log details.
3519 DOC_END
3520
3521 NAME: cache_store_log
3522 TYPE: string
3523 DEFAULT: none
3524 LOC: Config.Log.store
3525 DOC_START
3526 Logs the activities of the storage manager. Shows which
3527 objects are ejected from the cache, and which objects are
3528 saved and for how long. To disable, enter "none" or remove the line.
3529 There are not really utilities to analyze this data, so you can safely
3530 disable it.
3531
3532 Example:
3533 cache_store_log @DEFAULT_STORE_LOG@
3534 DOC_END
3535
3536 NAME: cache_swap_state cache_swap_log
3537 TYPE: string
3538 LOC: Config.Log.swap
3539 DEFAULT: none
3540 DOC_START
3541 Location for the cache "swap.state" file. This index file holds
3542 the metadata of objects saved on disk. It is used to rebuild
3543 the cache during startup. Normally this file resides in each
3544 'cache_dir' directory, but you may specify an alternate
3545 pathname here. Note you must give a full filename, not just
3546 a directory. Since this is the index for the whole object
3547 list you CANNOT periodically rotate it!
3548
3549 If %s can be used in the file name it will be replaced with a
3550 a representation of the cache_dir name where each / is replaced
3551 with '.'. This is needed to allow adding/removing cache_dir
3552 lines when cache_swap_log is being used.
3553
3554 If have more than one 'cache_dir', and %s is not used in the name
3555 these swap logs will have names such as:
3556
3557 cache_swap_log.00
3558 cache_swap_log.01
3559 cache_swap_log.02
3560
3561 The numbered extension (which is added automatically)
3562 corresponds to the order of the 'cache_dir' lines in this
3563 configuration file. If you change the order of the 'cache_dir'
3564 lines in this file, these index files will NOT correspond to
3565 the correct 'cache_dir' entry (unless you manually rename
3566 them). We recommend you do NOT use this option. It is
3567 better to keep these index files in each 'cache_dir' directory.
3568 DOC_END
3569
3570 NAME: logfile_rotate
3571 TYPE: int
3572 DEFAULT: 10
3573 LOC: Config.Log.rotateNumber
3574 DOC_START
3575 Specifies the number of logfile rotations to make when you
3576 type 'squid -k rotate'. The default is 10, which will rotate
3577 with extensions 0 through 9. Setting logfile_rotate to 0 will
3578 disable the file name rotation, but the logfiles are still closed
3579 and re-opened. This will enable you to rename the logfiles
3580 yourself just before sending the rotate signal.
3581
3582 Note, the 'squid -k rotate' command normally sends a USR1
3583 signal to the running squid process. In certain situations
3584 (e.g. on Linux with Async I/O), USR1 is used for other
3585 purposes, so -k rotate uses another signal. It is best to get
3586 in the habit of using 'squid -k rotate' instead of 'kill -USR1
3587 <pid>'.
3588
3589 Note, from Squid-3.1 this option has no effect on the cache.log,
3590 that log can be rotated separately by using debug_options
3591 DOC_END
3592
3593 NAME: emulate_httpd_log
3594 TYPE: obsolete
3595 DOC_START
3596 Replace this with an access_log directive using the format 'common' or 'combined'.
3597 DOC_END
3598
3599 NAME: log_ip_on_direct
3600 TYPE: obsolete
3601 DOC_START
3602 Remove this option from your config. To log server or peer names use %<A in the log format.
3603 DOC_END
3604
3605 NAME: mime_table
3606 TYPE: string
3607 DEFAULT: @DEFAULT_MIME_TABLE@
3608 LOC: Config.mimeTablePathname
3609 DOC_START
3610 Pathname to Squid's MIME table. You shouldn't need to change
3611 this, but the default file contains examples and formatting
3612 information if you do.
3613 DOC_END
3614
3615 NAME: log_mime_hdrs
3616 COMMENT: on|off
3617 TYPE: onoff
3618 LOC: Config.onoff.log_mime_hdrs
3619 DEFAULT: off
3620 DOC_START
3621 The Cache can record both the request and the response MIME
3622 headers for each HTTP transaction. The headers are encoded
3623 safely and will appear as two bracketed fields at the end of
3624 the access log (for either the native or httpd-emulated log
3625 formats). To enable this logging set log_mime_hdrs to 'on'.
3626 DOC_END
3627
3628 NAME: useragent_log
3629 TYPE: obsolete
3630 DOC_START
3631 Replace this with an access_log directive using the format 'useragent'.
3632 DOC_END
3633
3634 NAME: referer_log referrer_log
3635 TYPE: obsolete
3636 DOC_START
3637 Replace this with an access_log directive using the format 'referrer'.
3638 DOC_END
3639
3640 NAME: pid_filename
3641 TYPE: string
3642 DEFAULT: @DEFAULT_PID_FILE@
3643 LOC: Config.pidFilename
3644 DOC_START
3645 A filename to write the process-id to. To disable, enter "none".
3646 DOC_END
3647
3648 NAME: log_fqdn
3649 TYPE: obsolete
3650 DOC_START
3651 Remove this option from your config. To log FQDN use %>A in the log format.
3652 DOC_END
3653
3654 NAME: client_netmask
3655 TYPE: address
3656 LOC: Config.Addrs.client_netmask
3657 DEFAULT: no_addr
3658 DOC_START
3659 A netmask for client addresses in logfiles and cachemgr output.
3660 Change this to protect the privacy of your cache clients.
3661 A netmask of 255.255.255.0 will log all IP's in that range with
3662 the last digit set to '0'.
3663 DOC_END
3664
3665 NAME: forward_log
3666 TYPE: obsolete
3667 DOC_START
3668 Use a regular access.log with ACL limiting it to MISS events.
3669 DOC_END
3670
3671 NAME: strip_query_terms
3672 TYPE: onoff
3673 LOC: Config.onoff.strip_query_terms
3674 DEFAULT: on
3675 DOC_START
3676 By default, Squid strips query terms from requested URLs before
3677 logging. This protects your user's privacy.
3678 DOC_END
3679
3680 NAME: buffered_logs
3681 COMMENT: on|off
3682 TYPE: onoff
3683 DEFAULT: off
3684 LOC: Config.onoff.buffered_logs
3685 DOC_START
3686 cache.log log file is written with stdio functions, and as such
3687 it can be buffered or unbuffered. By default it will be unbuffered.
3688 Buffering it can speed up the writing slightly (though you are
3689 unlikely to need to worry unless you run with tons of debugging
3690 enabled in which case performance will suffer badly anyway..).
3691 DOC_END
3692
3693 NAME: netdb_filename
3694 TYPE: string
3695 DEFAULT: stdio:@DEFAULT_NETDB_FILE@
3696 LOC: Config.netdbFilename
3697 IFDEF: USE_ICMP
3698 DOC_START
3699 A filename where Squid stores it's netdb state between restarts.
3700 To disable, enter "none".
3701 DOC_END
3702
3703 COMMENT_START
3704 OPTIONS FOR TROUBLESHOOTING
3705 -----------------------------------------------------------------------------
3706 COMMENT_END
3707
3708 NAME: cache_log
3709 TYPE: string
3710 DEFAULT_IF_NONE: @DEFAULT_CACHE_LOG@
3711 LOC: Debug::cache_log
3712 DOC_START
3713 Cache logging file. This is where general information about
3714 your cache's behavior goes. You can increase the amount of data
3715 logged to this file and how often its rotated with "debug_options"
3716 DOC_END
3717
3718 NAME: debug_options
3719 TYPE: eol
3720 DEFAULT: ALL,1
3721 LOC: Debug::debugOptions
3722 DOC_START
3723 Logging options are set as section,level where each source file
3724 is assigned a unique section. Lower levels result in less
3725 output, Full debugging (level 9) can result in a very large
3726 log file, so be careful.
3727
3728 The magic word "ALL" sets debugging levels for all sections.
3729 We recommend normally running with "ALL,1".
3730
3731 The rotate=N option can be used to keep more or less of these logs
3732 than would otherwise be kept by logfile_rotate.
3733 For most uses a single log should be enough to monitor current
3734 events affecting Squid.
3735 DOC_END
3736
3737 NAME: coredump_dir
3738 TYPE: string
3739 LOC: Config.coredump_dir
3740 DEFAULT_IF_NONE: none
3741 DOC_START
3742 By default Squid leaves core files in the directory from where
3743 it was started. If you set 'coredump_dir' to a directory
3744 that exists, Squid will chdir() to that directory at startup
3745 and coredump files will be left there.
3746
3747 NOCOMMENT_START
3748
3749 # Leave coredumps in the first cache dir
3750 coredump_dir @DEFAULT_SWAP_DIR@
3751 NOCOMMENT_END
3752 DOC_END
3753
3754
3755 COMMENT_START
3756 OPTIONS FOR FTP GATEWAYING
3757 -----------------------------------------------------------------------------
3758 COMMENT_END
3759
3760 NAME: ftp_user
3761 TYPE: string
3762 DEFAULT: Squid@
3763 LOC: Config.Ftp.anon_user
3764 DOC_START
3765 If you want the anonymous login password to be more informative
3766 (and enable the use of picky ftp servers), set this to something
3767 reasonable for your domain, like wwwuser@somewhere.net
3768
3769 The reason why this is domainless by default is the
3770 request can be made on the behalf of a user in any domain,
3771 depending on how the cache is used.
3772 Some ftp server also validate the email address is valid
3773 (for example perl.com).
3774 DOC_END
3775
3776 NAME: ftp_passive
3777 TYPE: onoff
3778 DEFAULT: on
3779 LOC: Config.Ftp.passive
3780 DOC_START
3781 If your firewall does not allow Squid to use passive
3782 connections, turn off this option.
3783
3784 Use of ftp_epsv_all option requires this to be ON.
3785 DOC_END
3786
3787 NAME: ftp_epsv_all
3788 TYPE: onoff
3789 DEFAULT: off
3790 LOC: Config.Ftp.epsv_all
3791 DOC_START
3792 FTP Protocol extensions permit the use of a special "EPSV ALL" command.
3793
3794 NATs may be able to put the connection on a "fast path" through the
3795 translator, as the EPRT command will never be used and therefore,
3796 translation of the data portion of the segments will never be needed.
3797
3798 When a client only expects to do two-way FTP transfers this may be
3799 useful.
3800 If squid finds that it must do a three-way FTP transfer after issuing
3801 an EPSV ALL command, the FTP session will fail.
3802
3803 If you have any doubts about this option do not use it.
3804 Squid will nicely attempt all other connection methods.
3805
3806 Requires ftp_passive to be ON (default) for any effect.
3807 DOC_END
3808
3809 NAME: ftp_epsv
3810 TYPE: onoff
3811 DEFAULT: on
3812 LOC: Config.Ftp.epsv
3813 DOC_START
3814 FTP Protocol extensions permit the use of a special "EPSV" command.
3815
3816 NATs may be able to put the connection on a "fast path" through the
3817 translator using EPSV, as the EPRT command will never be used
3818 and therefore, translation of the data portion of the segments
3819 will never be needed.
3820
3821 Turning this OFF will prevent EPSV being attempted.
3822 WARNING: Doing so will convert Squid back to the old behavior with all
3823 the related problems with external NAT devices/layers.
3824
3825 Requires ftp_passive to be ON (default) for any effect.
3826 DOC_END
3827
3828 NAME: ftp_eprt
3829 TYPE: onoff
3830 DEFAULT: on
3831 LOC: Config.Ftp.eprt
3832 DOC_START
3833 FTP Protocol extensions permit the use of a special "EPRT" command.
3834
3835 This extension provides a protocol neutral alternative to the
3836 IPv4-only PORT command. When supported it enables active FTP data
3837 channels over IPv6 and efficient NAT handling.
3838
3839 Turning this OFF will prevent EPRT being attempted and will skip
3840 straight to using PORT for IPv4 servers.
3841
3842 Some devices are known to not handle this extension correctly and
3843 may result in crashes. Devices which suport EPRT enough to fail
3844 cleanly will result in Squid attempting PORT anyway. This directive
3845 should only be disabled when EPRT results in device failures.
3846
3847 WARNING: Doing so will convert Squid back to the old behavior with all
3848 the related problems with external NAT devices/layers and IPv4-only FTP.
3849 DOC_END
3850
3851 NAME: ftp_sanitycheck
3852 TYPE: onoff
3853 DEFAULT: on
3854 LOC: Config.Ftp.sanitycheck
3855 DOC_START
3856 For security and data integrity reasons Squid by default performs
3857 sanity checks of the addresses of FTP data connections ensure the
3858 data connection is to the requested server. If you need to allow
3859 FTP connections to servers using another IP address for the data
3860 connection turn this off.
3861 DOC_END
3862
3863 NAME: ftp_telnet_protocol
3864 TYPE: onoff
3865 DEFAULT: on
3866 LOC: Config.Ftp.telnet
3867 DOC_START
3868 The FTP protocol is officially defined to use the telnet protocol
3869 as transport channel for the control connection. However, many
3870 implementations are broken and does not respect this aspect of
3871 the FTP protocol.
3872
3873 If you have trouble accessing files with ASCII code 255 in the
3874 path or similar problems involving this ASCII code you can
3875 try setting this directive to off. If that helps, report to the
3876 operator of the FTP server in question that their FTP server
3877 is broken and does not follow the FTP standard.
3878 DOC_END
3879
3880 COMMENT_START
3881 OPTIONS FOR EXTERNAL SUPPORT PROGRAMS
3882 -----------------------------------------------------------------------------
3883 COMMENT_END
3884
3885 NAME: diskd_program
3886 TYPE: string
3887 DEFAULT: @DEFAULT_DISKD@
3888 LOC: Config.Program.diskd
3889 DOC_START
3890 Specify the location of the diskd executable.
3891 Note this is only useful if you have compiled in
3892 diskd as one of the store io modules.
3893 DOC_END
3894
3895 NAME: unlinkd_program
3896 IFDEF: USE_UNLINKD
3897 TYPE: string
3898 DEFAULT: @DEFAULT_UNLINKD@
3899 LOC: Config.Program.unlinkd
3900 DOC_START
3901 Specify the location of the executable for file deletion process.
3902 DOC_END
3903
3904 NAME: pinger_program
3905 TYPE: string
3906 DEFAULT: @DEFAULT_PINGER@
3907 LOC: Config.pinger.program
3908 IFDEF: USE_ICMP
3909 DOC_START
3910 Specify the location of the executable for the pinger process.
3911 DOC_END
3912
3913 NAME: pinger_enable
3914 TYPE: onoff
3915 DEFAULT: on
3916 LOC: Config.pinger.enable
3917 IFDEF: USE_ICMP
3918 DOC_START
3919 Control whether the pinger is active at run-time.
3920 Enables turning ICMP pinger on and off with a simple
3921 squid -k reconfigure.
3922 DOC_END
3923
3924
3925 COMMENT_START
3926 OPTIONS FOR URL REWRITING
3927 -----------------------------------------------------------------------------
3928 COMMENT_END
3929
3930 NAME: url_rewrite_program redirect_program
3931 TYPE: wordlist
3932 LOC: Config.Program.redirect
3933 DEFAULT: none
3934 DOC_START
3935 Specify the location of the executable URL rewriter to use.
3936 Since they can perform almost any function there isn't one included.
3937
3938 For each requested URL, the rewriter will receive on line with the format
3939
3940 URL <SP> client_ip "/" fqdn <SP> user <SP> method [<SP> kvpairs]<NL>
3941
3942 In the future, the rewriter interface will be extended with
3943 key=value pairs ("kvpairs" shown above). Rewriter programs
3944 should be prepared to receive and possibly ignore additional
3945 whitespace-separated tokens on each input line.
3946
3947 And the rewriter may return a rewritten URL. The other components of
3948 the request line does not need to be returned (ignored if they are).
3949
3950 The rewriter can also indicate that a client-side redirect should
3951 be performed to the new URL. This is done by prefixing the returned
3952 URL with "301:" (moved permanently) or 302: (moved temporarily), etc.
3953
3954 By default, a URL rewriter is not used.
3955 DOC_END
3956
3957 NAME: url_rewrite_children redirect_children
3958 TYPE: HelperChildConfig
3959 DEFAULT: 20 startup=0 idle=1 concurrency=0
3960 LOC: Config.redirectChildren
3961 DOC_START
3962 The maximum number of redirector processes to spawn. If you limit
3963 it too few Squid will have to wait for them to process a backlog of
3964 URLs, slowing it down. If you allow too many they will use RAM
3965 and other system resources noticably.
3966
3967 The startup= and idle= options allow some measure of skew in your
3968 tuning.
3969
3970 startup=
3971
3972 Sets a minimum of how many processes are to be spawned when Squid
3973 starts or reconfigures. When set to zero the first request will
3974 cause spawning of the first child process to handle it.
3975
3976 Starting too few will cause an initial slowdown in traffic as Squid
3977 attempts to simultaneously spawn enough processes to cope.
3978
3979 idle=
3980
3981 Sets a minimum of how many processes Squid is to try and keep available
3982 at all times. When traffic begins to rise above what the existing
3983 processes can handle this many more will be spawned up to the maximum
3984 configured. A minimum setting of 1 is required.
3985
3986 concurrency=
3987
3988 The number of requests each redirector helper can handle in
3989 parallel. Defaults to 0 which indicates the redirector
3990 is a old-style single threaded redirector.
3991
3992 When this directive is set to a value >= 1 then the protocol
3993 used to communicate with the helper is modified to include
3994 a request ID in front of the request/response. The request
3995 ID from the request must be echoed back with the response
3996 to that request.
3997 DOC_END
3998
3999 NAME: url_rewrite_host_header redirect_rewrites_host_header
4000 TYPE: onoff
4001 DEFAULT: on
4002 LOC: Config.onoff.redir_rewrites_host
4003 DOC_START
4004 To preserve same-origin security policies in browsers and
4005 prevent Host: header forgery by redirectors Squid rewrites
4006 any Host: header in redirected requests.
4007
4008 If you are running an accelerator this may not be a wanted
4009 effect of a redirector. This directive enables you disable
4010 Host: alteration in reverse-proxy traffic.
4011
4012 WARNING: Entries are cached on the result of the URL rewriting
4013 process, so be careful if you have domain-virtual hosts.
4014
4015 WARNING: Squid and other software verifies the URL and Host
4016 are matching, so be careful not to relay through other proxies
4017 or inspecting firewalls with this disabled.
4018 DOC_END
4019
4020 NAME: url_rewrite_access redirector_access
4021 TYPE: acl_access
4022 DEFAULT: none
4023 LOC: Config.accessList.redirector
4024 DOC_START
4025 If defined, this access list specifies which requests are
4026 sent to the redirector processes. By default all requests
4027 are sent.
4028
4029 This clause supports both fast and slow acl types.
4030 See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
4031 DOC_END
4032
4033 NAME: url_rewrite_bypass redirector_bypass
4034 TYPE: onoff
4035 LOC: Config.onoff.redirector_bypass
4036 DEFAULT: off
4037 DOC_START
4038 When this is 'on', a request will not go through the
4039 redirector if all redirectors are busy. If this is 'off'
4040 and the redirector queue grows too large, Squid will exit
4041 with a FATAL error and ask you to increase the number of
4042 redirectors. You should only enable this if the redirectors
4043 are not critical to your caching system. If you use
4044 redirectors for access control, and you enable this option,
4045 users may have access to pages they should not
4046 be allowed to request.
4047 DOC_END
4048
4049 COMMENT_START
4050 OPTIONS FOR TUNING THE CACHE
4051 -----------------------------------------------------------------------------
4052 COMMENT_END
4053
4054 NAME: cache no_cache
4055 TYPE: acl_access
4056 DEFAULT: none
4057 LOC: Config.accessList.noCache
4058 DOC_START
4059 A list of ACL elements which, if matched and denied, cause the request to
4060 not be satisfied from the cache and the reply to not be cached.
4061 In other words, use this to force certain objects to never be cached.
4062
4063 You must use the words 'allow' or 'deny' to indicate whether items
4064 matching the ACL should be allowed or denied into the cache.
4065
4066 Default is to allow all to be cached.
4067
4068 This clause supports both fast and slow acl types.
4069 See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
4070 DOC_END
4071
4072 NAME: max_stale
4073 COMMENT: time-units
4074 TYPE: time_t
4075 LOC: Config.maxStale
4076 DEFAULT: 1 week
4077 DOC_START
4078 This option puts an upper limit on how stale content Squid
4079 will serve from the cache if cache validation fails.
4080 Can be overriden by the refresh_pattern max-stale option.
4081 DOC_END
4082
4083 NAME: refresh_pattern
4084 TYPE: refreshpattern
4085 LOC: Config.Refresh
4086 DEFAULT: none
4087 DOC_START
4088 usage: refresh_pattern [-i] regex min percent max [options]
4089
4090 By default, regular expressions are CASE-SENSITIVE. To make
4091 them case-insensitive, use the -i option.
4092
4093 'Min' is the time (in minutes) an object without an explicit
4094 expiry time should be considered fresh. The recommended
4095 value is 0, any higher values may cause dynamic applications
4096 to be erroneously cached unless the application designer
4097 has taken the appropriate actions.
4098
4099 'Percent' is a percentage of the objects age (time since last
4100 modification age) an object without explicit expiry time
4101 will be considered fresh.
4102
4103 'Max' is an upper limit on how long objects without an explicit
4104 expiry time will be considered fresh.
4105
4106 options: override-expire
4107 override-lastmod
4108 reload-into-ims
4109 ignore-reload
4110 ignore-no-cache
4111 ignore-no-store
4112 ignore-must-revalidate
4113 ignore-private
4114 ignore-auth
4115 max-stale=NN
4116 refresh-ims
4117 store-stale
4118
4119 override-expire enforces min age even if the server
4120 sent an explicit expiry time (e.g., with the
4121 Expires: header or Cache-Control: max-age). Doing this
4122 VIOLATES the HTTP standard. Enabling this feature
4123 could make you liable for problems which it causes.
4124
4125 Note: override-expire does not enforce staleness - it only extends
4126 freshness / min. If the server returns a Expires time which
4127 is longer than your max time, Squid will still consider
4128 the object fresh for that period of time.
4129
4130 override-lastmod enforces min age even on objects
4131 that were modified recently.
4132
4133 reload-into-ims changes client no-cache or ``reload''
4134 to If-Modified-Since requests. Doing this VIOLATES the
4135 HTTP standard. Enabling this feature could make you
4136 liable for problems which it causes.
4137
4138 ignore-reload ignores a client no-cache or ``reload''
4139 header. Doing this VIOLATES the HTTP standard. Enabling
4140 this feature could make you liable for problems which
4141 it causes.
4142
4143 ignore-no-cache ignores any ``Pragma: no-cache'' and
4144 ``Cache-control: no-cache'' headers received from a server.
4145 The HTTP RFC never allows the use of this (Pragma) header
4146 from a server, only a client, though plenty of servers
4147 send it anyway.
4148
4149 ignore-no-store ignores any ``Cache-control: no-store''
4150 headers received from a server. Doing this VIOLATES
4151 the HTTP standard. Enabling this feature could make you
4152 liable for problems which it causes.
4153
4154 ignore-must-revalidate ignores any ``Cache-Control: must-revalidate``
4155 headers received from a server. Doing this VIOLATES
4156 the HTTP standard. Enabling this feature could make you
4157 liable for problems which it causes.
4158
4159 ignore-private ignores any ``Cache-control: private''
4160 headers received from a server. Doing this VIOLATES
4161 the HTTP standard. Enabling this feature could make you
4162 liable for problems which it causes.
4163
4164 ignore-auth caches responses to requests with authorization,
4165 as if the originserver had sent ``Cache-control: public''
4166 in the response header. Doing this VIOLATES the HTTP standard.
4167 Enabling this feature could make you liable for problems which
4168 it causes.
4169
4170 refresh-ims causes squid to contact the origin server
4171 when a client issues an If-Modified-Since request. This
4172 ensures that the client will receive an updated version
4173 if one is available.
4174
4175 store-stale stores responses even if they don't have explicit
4176 freshness or a validator (i.e., Last-Modified or an ETag)
4177 present, or if they're already stale. By default, Squid will
4178 not cache such responses because they usually can't be
4179 reused. Note that such responses will be stale by default.
4180
4181 max-stale=NN provide a maximum staleness factor. Squid won't
4182 serve objects more stale than this even if it failed to
4183 validate the object. Default: use the max_stale global limit.
4184
4185 Basically a cached object is:
4186
4187 FRESH if expires < now, else STALE
4188 STALE if age > max
4189 FRESH if lm-factor < percent, else STALE
4190 FRESH if age < min
4191 else STALE
4192
4193 The refresh_pattern lines are checked in the order listed here.
4194 The first entry which matches is used. If none of the entries
4195 match the default will be used.
4196
4197 Note, you must uncomment all the default lines if you want
4198 to change one. The default setting is only active if none is
4199 used.
4200
4201 NOCOMMENT_START
4202
4203 # Add any of your own refresh_pattern entries above these.
4204 refresh_pattern ^ftp: 1440 20% 10080
4205 refresh_pattern ^gopher: 1440 0% 1440
4206 refresh_pattern -i (/cgi-bin/|\?) 0 0% 0
4207 refresh_pattern . 0 20% 4320
4208 NOCOMMENT_END
4209 DOC_END
4210
4211 NAME: quick_abort_min
4212 COMMENT: (KB)
4213 TYPE: kb_int64_t
4214 DEFAULT: 16 KB
4215 LOC: Config.quickAbort.min
4216 DOC_NONE
4217
4218 NAME: quick_abort_max
4219 COMMENT: (KB)
4220 TYPE: kb_int64_t
4221 DEFAULT: 16 KB
4222 LOC: Config.quickAbort.max
4223 DOC_NONE
4224
4225 NAME: quick_abort_pct
4226 COMMENT: (percent)
4227 TYPE: int
4228 DEFAULT: 95
4229 LOC: Config.quickAbort.pct
4230 DOC_START
4231 The cache by default continues downloading aborted requests
4232 which are almost completed (less than 16 KB remaining). This
4233 may be undesirable on slow (e.g. SLIP) links and/or very busy
4234 caches. Impatient users may tie up file descriptors and
4235 bandwidth by repeatedly requesting and immediately aborting
4236 downloads.
4237
4238 When the user aborts a request, Squid will check the
4239 quick_abort values to the amount of data transfered until
4240 then.
4241
4242 If the transfer has less than 'quick_abort_min' KB remaining,
4243 it will finish the retrieval.
4244
4245 If the transfer has more than 'quick_abort_max' KB remaining,
4246 it will abort the retrieval.
4247
4248 If more than 'quick_abort_pct' of the transfer has completed,
4249 it will finish the retrieval.
4250
4251 If you do not want any retrieval to continue after the client
4252 has aborted, set both 'quick_abort_min' and 'quick_abort_max'
4253 to '0 KB'.
4254
4255 If you want retrievals to always continue if they are being
4256 cached set 'quick_abort_min' to '-1 KB'.
4257 DOC_END
4258
4259 NAME: read_ahead_gap
4260 COMMENT: buffer-size
4261 TYPE: b_int64_t
4262 LOC: Config.readAheadGap
4263 DEFAULT: 16 KB
4264 DOC_START
4265 The amount of data the cache will buffer ahead of what has been
4266 sent to the client when retrieving an object from another server.
4267 DOC_END
4268
4269 NAME: negative_ttl
4270 IFDEF: USE_HTTP_VIOLATIONS
4271 COMMENT: time-units
4272 TYPE: time_t
4273 LOC: Config.negativeTtl
4274 DEFAULT: 0 seconds
4275 DOC_START
4276 Set the Default Time-to-Live (TTL) for failed requests.
4277 Certain types of failures (such as "connection refused" and
4278 "404 Not Found") are able to be negatively-cached for a short time.
4279 Modern web servers should provide Expires: header, however if they
4280 do not this can provide a minimum TTL.
4281 The default is not to cache errors with unknown expiry details.
4282
4283 Note that this is different from negative caching of DNS lookups.
4284
4285 WARNING: Doing this VIOLATES the HTTP standard. Enabling
4286 this feature could make you liable for problems which it
4287 causes.
4288 DOC_END
4289
4290 NAME: positive_dns_ttl
4291 COMMENT: time-units
4292 TYPE: time_t
4293 LOC: Config.positiveDnsTtl
4294 DEFAULT: 6 hours
4295 DOC_START
4296 Upper limit on how long Squid will cache positive DNS responses.
4297 Default is 6 hours (360 minutes). This directive must be set
4298 larger than negative_dns_ttl.
4299 DOC_END
4300
4301 NAME: negative_dns_ttl
4302 COMMENT: time-units
4303 TYPE: time_t
4304 LOC: Config.negativeDnsTtl
4305 DEFAULT: 1 minutes
4306 DOC_START
4307 Time-to-Live (TTL) for negative caching of failed DNS lookups.
4308 This also sets the lower cache limit on positive lookups.
4309 Minimum value is 1 second, and it is not recommendable to go
4310 much below 10 seconds.
4311 DOC_END
4312
4313 NAME: range_offset_limit
4314 COMMENT: size [acl acl...]
4315 TYPE: acl_b_size_t
4316 LOC: Config.rangeOffsetLimit
4317 DEFAULT: none
4318 DOC_START
4319 usage: (size) [units] [[!]aclname]
4320
4321 Sets an upper limit on how far (number of bytes) into the file
4322 a Range request may be to cause Squid to prefetch the whole file.
4323 If beyond this limit, Squid forwards the Range request as it is and
4324 the result is NOT cached.
4325
4326 This is to stop a far ahead range request (lets say start at 17MB)
4327 from making Squid fetch the whole object up to that point before
4328 sending anything to the client.
4329
4330 Multiple range_offset_limit lines may be specified, and they will
4331 be searched from top to bottom on each request until a match is found.
4332 The first match found will be used. If no line matches a request, the
4333 default limit of 0 bytes will be used.
4334
4335 'size' is the limit specified as a number of units.
4336
4337 'units' specifies whether to use bytes, KB, MB, etc.
4338 If no units are specified bytes are assumed.
4339
4340 A size of 0 causes Squid to never fetch more than the
4341 client requested. (default)
4342
4343 A size of 'none' causes Squid to always fetch the object from the
4344 beginning so it may cache the result. (2.0 style)
4345
4346 'aclname' is the name of a defined ACL.
4347
4348 NP: Using 'none' as the byte value here will override any quick_abort settings
4349 that may otherwise apply to the range request. The range request will
4350 be fully fetched from start to finish regardless of the client
4351 actions. This affects bandwidth usage.
4352 DOC_END
4353
4354 NAME: minimum_expiry_time
4355 COMMENT: (seconds)
4356 TYPE: time_t
4357 LOC: Config.minimum_expiry_time
4358 DEFAULT: 60 seconds
4359 DOC_START
4360 The minimum caching time according to (Expires - Date)
4361 Headers Squid honors if the object can't be revalidated
4362 defaults to 60 seconds. In reverse proxy environments it
4363 might be desirable to honor shorter object lifetimes. It
4364 is most likely better to make your server return a
4365 meaningful Last-Modified header however. In ESI environments
4366 where page fragments often have short lifetimes, this will
4367 often be best set to 0.
4368 DOC_END
4369
4370 NAME: store_avg_object_size
4371 COMMENT: (bytes)
4372 TYPE: b_int64_t
4373 DEFAULT: 13 KB
4374 LOC: Config.Store.avgObjectSize
4375 DOC_START
4376 Average object size, used to estimate number of objects your
4377 cache can hold. The default is 13 KB.
4378 DOC_END
4379
4380 NAME: store_objects_per_bucket
4381 TYPE: int
4382 DEFAULT: 20
4383 LOC: Config.Store.objectsPerBucket
4384 DOC_START
4385 Target number of objects per bucket in the store hash table.
4386 Lowering this value increases the total number of buckets and
4387 also the storage maintenance rate. The default is 20.
4388 DOC_END
4389
4390 COMMENT_START
4391 HTTP OPTIONS
4392 -----------------------------------------------------------------------------
4393 COMMENT_END
4394
4395 NAME: request_header_max_size
4396 COMMENT: (KB)
4397 TYPE: b_size_t
4398 DEFAULT: 64 KB
4399 LOC: Config.maxRequestHeaderSize
4400 DOC_START
4401 This specifies the maximum size for HTTP headers in a request.
4402 Request headers are usually relatively small (about 512 bytes).
4403 Placing a limit on the request header size will catch certain
4404 bugs (for example with persistent connections) and possibly
4405 buffer-overflow or denial-of-service attacks.
4406 DOC_END
4407
4408 NAME: reply_header_max_size
4409 COMMENT: (KB)
4410 TYPE: b_size_t
4411 DEFAULT: 64 KB
4412 LOC: Config.maxReplyHeaderSize
4413 DOC_START
4414 This specifies the maximum size for HTTP headers in a reply.
4415 Reply headers are usually relatively small (about 512 bytes).
4416 Placing a limit on the reply header size will catch certain
4417 bugs (for example with persistent connections) and possibly
4418 buffer-overflow or denial-of-service attacks.
4419 DOC_END
4420
4421 NAME: request_body_max_size
4422 COMMENT: (bytes)
4423 TYPE: b_int64_t
4424 DEFAULT: 0 KB
4425 LOC: Config.maxRequestBodySize
4426 DOC_START
4427 This specifies the maximum size for an HTTP request body.
4428 In other words, the maximum size of a PUT/POST request.
4429 A user who attempts to send a request with a body larger
4430 than this limit receives an "Invalid Request" error message.
4431 If you set this parameter to a zero (the default), there will
4432 be no limit imposed.
4433 DOC_END
4434
4435 NAME: client_request_buffer_max_size
4436 COMMENT: (bytes)
4437 TYPE: b_size_t
4438 DEFAULT: 512 KB
4439 LOC: Config.maxRequestBufferSize
4440 DOC_START
4441 This specifies the maximum buffer size of a client request.
4442 It prevents squid eating too much memory when somebody uploads
4443 a large file.
4444 DOC_END
4445
4446 NAME: chunked_request_body_max_size
4447 COMMENT: (bytes)
4448 TYPE: b_int64_t
4449 DEFAULT: 64 KB
4450 LOC: Config.maxChunkedRequestBodySize
4451 DOC_START
4452 A broken or confused HTTP/1.1 client may send a chunked HTTP
4453 request to Squid. Squid does not have full support for that
4454 feature yet. To cope with such requests, Squid buffers the
4455 entire request and then dechunks request body to create a
4456 plain HTTP/1.0 request with a known content length. The plain
4457 request is then used by the rest of Squid code as usual.
4458
4459 The option value specifies the maximum size of the buffer used
4460 to hold the request before the conversion. If the chunked
4461 request size exceeds the specified limit, the conversion
4462 fails, and the client receives an "unsupported request" error,
4463 as if dechunking was disabled.
4464
4465 Dechunking is enabled by default. To disable conversion of
4466 chunked requests, set the maximum to zero.
4467
4468 Request dechunking feature and this option in particular are a
4469 temporary hack. When chunking requests and responses are fully
4470 supported, there will be no need to buffer a chunked request.
4471 DOC_END
4472
4473 NAME: broken_posts
4474 IFDEF: USE_HTTP_VIOLATIONS
4475 TYPE: acl_access
4476 DEFAULT: none
4477 LOC: Config.accessList.brokenPosts
4478 DOC_START
4479 A list of ACL elements which, if matched, causes Squid to send
4480 an extra CRLF pair after the body of a PUT/POST request.
4481
4482 Some HTTP servers has broken implementations of PUT/POST,
4483 and rely on an extra CRLF pair sent by some WWW clients.
4484
4485 Quote from RFC2616 section 4.1 on this matter:
4486
4487 Note: certain buggy HTTP/1.0 client implementations generate an
4488 extra CRLF's after a POST request. To restate what is explicitly
4489 forbidden by the BNF, an HTTP/1.1 client must not preface or follow
4490 a request with an extra CRLF.
4491
4492 This clause only supports fast acl types.
4493 See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
4494
4495 Example:
4496 acl buggy_server url_regex ^http://....
4497 broken_posts allow buggy_server
4498 DOC_END
4499
4500 NAME: adaptation_uses_indirect_client icap_uses_indirect_client
4501 COMMENT: on|off
4502 TYPE: onoff
4503 IFDEF: FOLLOW_X_FORWARDED_FOR&&USE_ADAPTATION
4504 DEFAULT: on
4505 LOC: Adaptation::Config::use_indirect_client
4506 DOC_START
4507 Controls whether the indirect client IP address (instead of the direct
4508 client IP address) is passed to adaptation services.
4509
4510 See also: follow_x_forwarded_for adaptation_send_client_ip
4511 DOC_END
4512
4513 NAME: via
4514 IFDEF: USE_HTTP_VIOLATIONS
4515 COMMENT: on|off
4516 TYPE: onoff
4517 DEFAULT: on
4518 LOC: Config.onoff.via
4519 DOC_START
4520 If set (default), Squid will include a Via header in requests and
4521 replies as required by RFC2616.
4522 DOC_END
4523
4524 NAME: ie_refresh
4525 COMMENT: on|off
4526 TYPE: onoff
4527 LOC: Config.onoff.ie_refresh
4528 DEFAULT: off
4529 DOC_START
4530 Microsoft Internet Explorer up until version 5.5 Service
4531 Pack 1 has an issue with transparent proxies, wherein it
4532 is impossible to force a refresh. Turning this on provides
4533 a partial fix to the problem, by causing all IMS-REFRESH
4534 requests from older IE versions to check the origin server
4535 for fresh content. This reduces hit ratio by some amount
4536 (~10% in my experience), but allows users to actually get
4537 fresh content when they want it. Note because Squid
4538 cannot tell if the user is using 5.5 or 5.5SP1, the behavior
4539 of 5.5 is unchanged from old versions of Squid (i.e. a
4540 forced refresh is impossible). Newer versions of IE will,
4541 hopefully, continue to have the new behavior and will be
4542 handled based on that assumption. This option defaults to
4543 the old Squid behavior, which is better for hit ratios but
4544 worse for clients using IE, if they need to be able to
4545 force fresh content.
4546 DOC_END
4547
4548 NAME: vary_ignore_expire
4549 COMMENT: on|off
4550 TYPE: onoff
4551 LOC: Config.onoff.vary_ignore_expire
4552 DEFAULT: off
4553 DOC_START
4554 Many HTTP servers supporting Vary gives such objects
4555 immediate expiry time with no cache-control header
4556 when requested by a HTTP/1.0 client. This option
4557 enables Squid to ignore such expiry times until
4558 HTTP/1.1 is fully implemented.
4559
4560 WARNING: If turned on this may eventually cause some
4561 varying objects not intended for caching to get cached.
4562 DOC_END
4563
4564 NAME: request_entities
4565 TYPE: onoff
4566 LOC: Config.onoff.request_entities
4567 DEFAULT: off
4568 DOC_START
4569 Squid defaults to deny GET and HEAD requests with request entities,
4570 as the meaning of such requests are undefined in the HTTP standard
4571 even if not explicitly forbidden.
4572
4573 Set this directive to on if you have clients which insists
4574 on sending request entities in GET or HEAD requests. But be warned
4575 that there is server software (both proxies and web servers) which
4576 can fail to properly process this kind of request which may make you
4577 vulnerable to cache pollution attacks if enabled.
4578 DOC_END
4579
4580 NAME: request_header_access
4581 IFDEF: USE_HTTP_VIOLATIONS
4582 TYPE: http_header_access[]
4583 LOC: Config.request_header_access
4584 DEFAULT: none
4585 DOC_START
4586 Usage: request_header_access header_name allow|deny [!]aclname ...
4587
4588 WARNING: Doing this VIOLATES the HTTP standard. Enabling
4589 this feature could make you liable for problems which it
4590 causes.
4591
4592 This option replaces the old 'anonymize_headers' and the
4593 older 'http_anonymizer' option with something that is much
4594 more configurable. This new method creates a list of ACLs
4595 for each header, allowing you very fine-tuned header
4596 mangling.
4597
4598 This option only applies to request headers, i.e., from the
4599 client to the server.
4600
4601 You can only specify known headers for the header name.
4602 Other headers are reclassified as 'Other'. You can also
4603 refer to all the headers with 'All'.
4604
4605 For example, to achieve the same behavior as the old
4606 'http_anonymizer standard' option, you should use:
4607
4608 request_header_access From deny all
4609 request_header_access Referer deny all
4610 request_header_access Server deny all
4611 request_header_access User-Agent deny all
4612 request_header_access WWW-Authenticate deny all
4613 request_header_access Link deny all
4614
4615 Or, to reproduce the old 'http_anonymizer paranoid' feature
4616 you should use:
4617
4618 request_header_access Allow allow all
4619 request_header_access Authorization allow all
4620 request_header_access WWW-Authenticate allow all
4621 request_header_access Proxy-Authorization allow all
4622 request_header_access Proxy-Authenticate allow all
4623 request_header_access Cache-Control allow all
4624 request_header_access Content-Encoding allow all
4625 request_header_access Content-Length allow all
4626 request_header_access Content-Type allow all
4627 request_header_access Date allow all
4628 request_header_access Expires allow all
4629 request_header_access Host allow all
4630 request_header_access If-Modified-Since allow all
4631 request_header_access Last-Modified allow all
4632 request_header_access Location allow all
4633 request_header_access Pragma allow all
4634 request_header_access Accept allow all
4635 request_header_access Accept-Charset allow all
4636 request_header_access Accept-Encoding allow all
4637 request_header_access Accept-Language allow all
4638 request_header_access Content-Language allow all
4639 request_header_access Mime-Version allow all
4640 request_header_access Retry-After allow all
4641 request_header_access Title allow all
4642 request_header_access Connection allow all
4643 request_header_access All deny all
4644
4645 although many of those are HTTP reply headers, and so should be
4646 controlled with the reply_header_access directive.
4647
4648 By default, all headers are allowed (no anonymizing is
4649 performed).
4650 DOC_END
4651
4652 NAME: reply_header_access
4653 IFDEF: USE_HTTP_VIOLATIONS
4654 TYPE: http_header_access[]
4655 LOC: Config.reply_header_access
4656 DEFAULT: none
4657 DOC_START
4658 Usage: reply_header_access header_name allow|deny [!]aclname ...
4659
4660 WARNING: Doing this VIOLATES the HTTP standard. Enabling
4661 this feature could make you liable for problems which it
4662 causes.
4663
4664 This option only applies to reply headers, i.e., from the
4665 server to the client.
4666
4667 This is the same as request_header_access, but in the other
4668 direction.
4669
4670 This option replaces the old 'anonymize_headers' and the
4671 older 'http_anonymizer' option with something that is much
4672 more configurable. This new method creates a list of ACLs
4673 for each header, allowing you very fine-tuned header
4674 mangling.
4675
4676 You can only specify known headers for the header name.
4677 Other headers are reclassified as 'Other'. You can also
4678 refer to all the headers with 'All'.
4679
4680 For example, to achieve the same behavior as the old
4681 'http_anonymizer standard' option, you should use:
4682
4683 reply_header_access From deny all
4684 reply_header_access Referer deny all
4685 reply_header_access Server deny all
4686 reply_header_access User-Agent deny all
4687 reply_header_access WWW-Authenticate deny all
4688 reply_header_access Link deny all
4689
4690 Or, to reproduce the old 'http_anonymizer paranoid' feature
4691 you should use:
4692
4693 reply_header_access Allow allow all
4694 reply_header_access Authorization allow all
4695 reply_header_access WWW-Authenticate allow all
4696 reply_header_access Proxy-Authorization allow all
4697 reply_header_access Proxy-Authenticate allow all
4698 reply_header_access Cache-Control allow all
4699 reply_header_access Content-Encoding allow all
4700 reply_header_access Content-Length allow all
4701 reply_header_access Content-Type allow all
4702 reply_header_access Date allow all
4703 reply_header_access Expires allow all
4704 reply_header_access Host allow all
4705 reply_header_access If-Modified-Since allow all
4706 reply_header_access Last-Modified allow all
4707 reply_header_access Location allow all
4708 reply_header_access Pragma allow all
4709 reply_header_access Accept allow all
4710 reply_header_access Accept-Charset allow all
4711 reply_header_access Accept-Encoding allow all
4712 reply_header_access Accept-Language allow all
4713 reply_header_access Content-Language allow all
4714 reply_header_access Mime-Version allow all
4715 reply_header_access Retry-After allow all
4716 reply_header_access Title allow all
4717 reply_header_access Connection allow all
4718 reply_header_access All deny all
4719
4720 although the HTTP request headers won't be usefully controlled
4721 by this directive -- see request_header_access for details.
4722
4723 By default, all headers are allowed (no anonymizing is
4724 performed).
4725 DOC_END
4726
4727 NAME: request_header_replace header_replace
4728 IFDEF: USE_HTTP_VIOLATIONS
4729 TYPE: http_header_replace[]
4730 LOC: Config.request_header_access
4731 DEFAULT: none
4732 DOC_START
4733 Usage: request_header_replace header_name message
4734 Example: request_header_replace User-Agent Nutscrape/1.0 (CP/M; 8-bit)
4735
4736 This option allows you to change the contents of headers
4737 denied with request_header_access above, by replacing them
4738 with some fixed string. This replaces the old fake_user_agent
4739 option.
4740
4741 This only applies to request headers, not reply headers.
4742
4743 By default, headers are removed if denied.
4744 DOC_END
4745
4746 NAME: reply_header_replace
4747 IFDEF: USE_HTTP_VIOLATIONS
4748 TYPE: http_header_replace[]
4749 LOC: Config.reply_header_access
4750 DEFAULT: none
4751 DOC_START
4752 Usage: reply_header_replace header_name message
4753 Example: reply_header_replace Server Foo/1.0
4754
4755 This option allows you to change the contents of headers
4756 denied with reply_header_access above, by replacing them
4757 with some fixed string.
4758
4759 This only applies to reply headers, not request headers.
4760
4761 By default, headers are removed if denied.
4762 DOC_END
4763
4764 NAME: relaxed_header_parser
4765 COMMENT: on|off|warn
4766 TYPE: tristate
4767 LOC: Config.onoff.relaxed_header_parser
4768 DEFAULT: on
4769 DOC_START
4770 In the default "on" setting Squid accepts certain forms
4771 of non-compliant HTTP messages where it is unambiguous
4772 what the sending application intended even if the message
4773 is not correctly formatted. The messages is then normalized
4774 to the correct form when forwarded by Squid.
4775
4776 If set to "warn" then a warning will be emitted in cache.log
4777 each time such HTTP error is encountered.
4778
4779 If set to "off" then such HTTP errors will cause the request
4780 or response to be rejected.
4781 DOC_END
4782
4783 COMMENT_START
4784 TIMEOUTS
4785 -----------------------------------------------------------------------------
4786 COMMENT_END
4787
4788 NAME: forward_timeout
4789 COMMENT: time-units
4790 TYPE: time_t
4791 LOC: Config.Timeout.forward
4792 DEFAULT: 4 minutes
4793 DOC_START
4794 This parameter specifies how long Squid should at most attempt in
4795 finding a forwarding path for the request before giving up.
4796 DOC_END
4797
4798 NAME: connect_timeout
4799 COMMENT: time-units
4800 TYPE: time_t
4801 LOC: Config.Timeout.connect
4802 DEFAULT: 1 minute
4803 DOC_START
4804 This parameter specifies how long to wait for the TCP connect to
4805 the requested server or peer to complete before Squid should
4806 attempt to find another path where to forward the request.
4807 DOC_END
4808
4809 NAME: peer_connect_timeout
4810 COMMENT: time-units
4811 TYPE: time_t
4812 LOC: Config.Timeout.peer_connect
4813 DEFAULT: 30 seconds
4814 DOC_START
4815 This parameter specifies how long to wait for a pending TCP
4816 connection to a peer cache. The default is 30 seconds. You
4817 may also set different timeout values for individual neighbors
4818 with the 'connect-timeout' option on a 'cache_peer' line.
4819 DOC_END
4820
4821 NAME: read_timeout
4822 COMMENT: time-units
4823 TYPE: time_t
4824 LOC: Config.Timeout.read
4825 DEFAULT: 15 minutes
4826 DOC_START
4827 The read_timeout is applied on server-side connections. After
4828 each successful read(), the timeout will be extended by this
4829 amount. If no data is read again after this amount of time,
4830 the request is aborted and logged with ERR_READ_TIMEOUT. The
4831 default is 15 minutes.
4832 DOC_END
4833
4834 NAME: write_timeout
4835 COMMENT: time-units
4836 TYPE: time_t
4837 LOC: Config.Timeout.write
4838 DEFAULT: 15 minutes
4839 DOC_START
4840 This timeout is tracked for all connections that have data
4841 available for writing and are waiting for the socket to become
4842 ready. After each successful write, the timeout is extended by
4843 the configured amount. If Squid has data to write but the
4844 connection is not ready for the configured duration, the
4845 transaction associated with the connection is terminated. The
4846 default is 15 minutes.
4847 DOC_END
4848
4849 NAME: request_timeout
4850 TYPE: time_t
4851 LOC: Config.Timeout.request
4852 DEFAULT: 5 minutes
4853 DOC_START
4854 How long to wait for complete HTTP request headers after initial
4855 connection establishment.
4856 DOC_END
4857
4858 NAME: client_idle_pconn_timeout persistent_request_timeout
4859 TYPE: time_t
4860 LOC: Config.Timeout.clientIdlePconn
4861 DEFAULT: 2 minutes
4862 DOC_START
4863 How long to wait for the next HTTP request on a persistent
4864 client connection after the previous request completes.
4865 DOC_END
4866
4867 NAME: client_lifetime
4868 COMMENT: time-units
4869 TYPE: time_t
4870 LOC: Config.Timeout.lifetime
4871 DEFAULT: 1 day
4872 DOC_START
4873 The maximum amount of time a client (browser) is allowed to
4874 remain connected to the cache process. This protects the Cache
4875 from having a lot of sockets (and hence file descriptors) tied up
4876 in a CLOSE_WAIT state from remote clients that go away without
4877 properly shutting down (either because of a network failure or
4878 because of a poor client implementation). The default is one
4879 day, 1440 minutes.
4880
4881 NOTE: The default value is intended to be much larger than any
4882 client would ever need to be connected to your cache. You
4883 should probably change client_lifetime only as a last resort.
4884 If you seem to have many client connections tying up
4885 filedescriptors, we recommend first tuning the read_timeout,
4886 request_timeout, persistent_request_timeout and quick_abort values.
4887 DOC_END
4888
4889 NAME: half_closed_clients
4890 TYPE: onoff
4891 LOC: Config.onoff.half_closed_clients
4892 DEFAULT: off
4893 DOC_START
4894 Some clients may shutdown the sending side of their TCP
4895 connections, while leaving their receiving sides open. Sometimes,
4896 Squid can not tell the difference between a half-closed and a
4897 fully-closed TCP connection.
4898
4899 By default, Squid will immediately close client connections when
4900 read(2) returns "no more data to read."
4901
4902 Change this option to 'on' and Squid will keep open connections
4903 until a read(2) or write(2) on the socket returns an error.
4904 This may show some benefits for reverse proxies. But if not
4905 it is recommended to leave OFF.
4906 DOC_END
4907
4908 NAME: server_idle_pconn_timeout pconn_timeout
4909 TYPE: time_t
4910 LOC: Config.Timeout.serverIdlePconn
4911 DEFAULT: 1 minute
4912 DOC_START
4913 Timeout for idle persistent connections to servers and other
4914 proxies.
4915 DOC_END
4916
4917 NAME: ident_timeout
4918 TYPE: time_t
4919 IFDEF: USE_IDENT
4920 LOC: Ident::TheConfig.timeout
4921 DEFAULT: 10 seconds
4922 DOC_START
4923 Maximum time to wait for IDENT lookups to complete.
4924
4925 If this is too high, and you enabled IDENT lookups from untrusted
4926 users, you might be susceptible to denial-of-service by having
4927 many ident requests going at once.
4928 DOC_END
4929
4930 NAME: shutdown_lifetime
4931 COMMENT: time-units
4932 TYPE: time_t
4933 LOC: Config.shutdownLifetime
4934 DEFAULT: 30 seconds
4935 DOC_START
4936 When SIGTERM or SIGHUP is received, the cache is put into
4937 "shutdown pending" mode until all active sockets are closed.
4938 This value is the lifetime to set for all open descriptors
4939 during shutdown mode. Any active clients after this many
4940 seconds will receive a 'timeout' message.
4941 DOC_END
4942
4943 COMMENT_START
4944 ADMINISTRATIVE PARAMETERS
4945 -----------------------------------------------------------------------------
4946 COMMENT_END
4947
4948 NAME: cache_mgr
4949 TYPE: string
4950 DEFAULT: webmaster
4951 LOC: Config.adminEmail
4952 DOC_START
4953 Email-address of local cache manager who will receive
4954 mail if the cache dies. The default is "webmaster."
4955 DOC_END
4956
4957 NAME: mail_from
4958 TYPE: string
4959 DEFAULT: none
4960 LOC: Config.EmailFrom
4961 DOC_START
4962 From: email-address for mail sent when the cache dies.
4963 The default is to use 'appname@unique_hostname'.
4964 Default appname value is "squid", can be changed into
4965 src/globals.h before building squid.
4966 DOC_END
4967
4968 NAME: mail_program
4969 TYPE: eol
4970 DEFAULT: mail
4971 LOC: Config.EmailProgram
4972 DOC_START
4973 Email program used to send mail if the cache dies.
4974 The default is "mail". The specified program must comply
4975 with the standard Unix mail syntax:
4976 mail-program recipient < mailfile
4977
4978 Optional command line options can be specified.
4979 DOC_END
4980
4981 NAME: cache_effective_user
4982 TYPE: string
4983 DEFAULT: @DEFAULT_CACHE_EFFECTIVE_USER@
4984 LOC: Config.effectiveUser
4985 DOC_START
4986 If you start Squid as root, it will change its effective/real
4987 UID/GID to the user specified below. The default is to change
4988 to UID of @DEFAULT_CACHE_EFFECTIVE_USER@.
4989 see also; cache_effective_group
4990 DOC_END
4991
4992 NAME: cache_effective_group
4993 TYPE: string
4994 DEFAULT: none
4995 LOC: Config.effectiveGroup
4996 DOC_START
4997 Squid sets the GID to the effective user's default group ID
4998 (taken from the password file) and supplementary group list
4999 from the groups membership.
5000
5001 If you want Squid to run with a specific GID regardless of
5002 the group memberships of the effective user then set this
5003 to the group (or GID) you want Squid to run as. When set
5004 all other group privileges of the effective user are ignored
5005 and only this GID is effective. If Squid is not started as
5006 root the user starting Squid MUST be member of the specified
5007 group.
5008
5009 This option is not recommended by the Squid Team.
5010 Our preference is for administrators to configure a secure
5011 user account for squid with UID/GID matching system policies.
5012 DOC_END
5013
5014 NAME: httpd_suppress_version_string
5015 COMMENT: on|off
5016 TYPE: onoff
5017 DEFAULT: off
5018 LOC: Config.onoff.httpd_suppress_version_string
5019 DOC_START
5020 Suppress Squid version string info in HTTP headers and HTML error pages.
5021 DOC_END
5022
5023 NAME: visible_hostname
5024 TYPE: string
5025 LOC: Config.visibleHostname
5026 DEFAULT: none
5027 DOC_START
5028 If you want to present a special hostname in error messages, etc,
5029 define this. Otherwise, the return value of gethostname()
5030 will be used. If you have multiple caches in a cluster and
5031 get errors about IP-forwarding you must set them to have individual
5032 names with this setting.
5033 DOC_END
5034
5035 NAME: unique_hostname
5036 TYPE: string
5037 LOC: Config.uniqueHostname
5038 DEFAULT: none
5039 DOC_START
5040 If you want to have multiple machines with the same
5041 'visible_hostname' you must give each machine a different
5042 'unique_hostname' so forwarding loops can be detected.
5043 DOC_END
5044
5045 NAME: hostname_aliases
5046 TYPE: wordlist
5047 LOC: Config.hostnameAliases
5048 DEFAULT: none
5049 DOC_START
5050 A list of other DNS names your cache has.
5051 DOC_END
5052
5053 NAME: umask
5054 TYPE: int
5055 LOC: Config.umask
5056 DEFAULT: 027
5057 DOC_START
5058 Minimum umask which should be enforced while the proxy
5059 is running, in addition to the umask set at startup.
5060
5061 For a traditional octal representation of umasks, start
5062 your value with 0.
5063 DOC_END
5064
5065 COMMENT_START
5066 OPTIONS FOR THE CACHE REGISTRATION SERVICE
5067 -----------------------------------------------------------------------------
5068
5069 This section contains parameters for the (optional) cache
5070 announcement service. This service is provided to help
5071 cache administrators locate one another in order to join or
5072 create cache hierarchies.
5073
5074 An 'announcement' message is sent (via UDP) to the registration
5075 service by Squid. By default, the announcement message is NOT
5076 SENT unless you enable it with 'announce_period' below.
5077
5078 The announcement message includes your hostname, plus the
5079 following information from this configuration file:
5080
5081 http_port
5082 icp_port
5083 cache_mgr
5084
5085 All current information is processed regularly and made
5086 available on the Web at http://www.ircache.net/Cache/Tracker/.
5087 COMMENT_END
5088
5089 NAME: announce_period
5090 TYPE: time_t
5091 LOC: Config.Announce.period
5092 DEFAULT: 0
5093 DOC_START
5094 This is how frequently to send cache announcements. The
5095 default is `0' which disables sending the announcement
5096 messages.
5097
5098 To enable announcing your cache, just set an announce period.
5099
5100 Example:
5101 announce_period 1 day
5102 DOC_END
5103
5104 NAME: announce_host
5105 TYPE: string
5106 DEFAULT: tracker.ircache.net
5107 LOC: Config.Announce.host
5108 DOC_NONE
5109
5110 NAME: announce_file
5111 TYPE: string
5112 DEFAULT: none
5113 LOC: Config.Announce.file
5114 DOC_NONE
5115
5116 NAME: announce_port
5117 TYPE: u_short
5118 DEFAULT: 3131
5119 LOC: Config.Announce.port
5120 DOC_START
5121 announce_host and announce_port set the hostname and port
5122 number where the registration message will be sent.
5123
5124 Hostname will default to 'tracker.ircache.net' and port will
5125 default default to 3131. If the 'filename' argument is given,
5126 the contents of that file will be included in the announce
5127 message.
5128 DOC_END
5129
5130 COMMENT_START
5131 HTTPD-ACCELERATOR OPTIONS
5132 -----------------------------------------------------------------------------
5133 COMMENT_END
5134
5135 NAME: httpd_accel_surrogate_id
5136 TYPE: string
5137 DEFAULT: none
5138 LOC: Config.Accel.surrogate_id
5139 DOC_START
5140 Surrogates (http://www.esi.org/architecture_spec_1.0.html)
5141 need an identification token to allow control targeting. Because
5142 a farm of surrogates may all perform the same tasks, they may share
5143 an identification token.
5144
5145 The default ID is the visible_hostname
5146 DOC_END
5147
5148 NAME: http_accel_surrogate_remote
5149 COMMENT: on|off
5150 TYPE: onoff
5151 DEFAULT: off
5152 LOC: Config.onoff.surrogate_is_remote
5153 DOC_START
5154 Remote surrogates (such as those in a CDN) honour Surrogate-Control: no-store-remote.
5155 Set this to on to have squid behave as a remote surrogate.
5156 DOC_END
5157
5158 NAME: esi_parser
5159 IFDEF: USE_SQUID_ESI
5160 COMMENT: libxml2|expat|custom
5161 TYPE: string
5162 LOC: ESIParser::Type
5163 DEFAULT: custom
5164 DOC_START
5165 ESI markup is not strictly XML compatible. The custom ESI parser
5166 will give higher performance, but cannot handle non ASCII character
5167 encodings.
5168 DOC_END
5169
5170 COMMENT_START
5171 DELAY POOL PARAMETERS
5172 -----------------------------------------------------------------------------
5173 COMMENT_END
5174
5175 NAME: delay_pools
5176 TYPE: delay_pool_count
5177 DEFAULT: 0
5178 IFDEF: USE_DELAY_POOLS
5179 LOC: Config.Delay
5180 DOC_START
5181 This represents the number of delay pools to be used. For example,
5182 if you have one class 2 delay pool and one class 3 delays pool, you
5183 have a total of 2 delay pools.
5184 DOC_END
5185
5186 NAME: delay_class
5187 TYPE: delay_pool_class
5188 DEFAULT: none
5189 IFDEF: USE_DELAY_POOLS
5190 LOC: Config.Delay
5191 DOC_START
5192 This defines the class of each delay pool. There must be exactly one
5193 delay_class line for each delay pool. For example, to define two
5194 delay pools, one of class 2 and one of class 3, the settings above
5195 and here would be:
5196
5197 Example:
5198 delay_pools 4 # 4 delay pools
5199 delay_class 1 2 # pool 1 is a class 2 pool
5200 delay_class 2 3 # pool 2 is a class 3 pool
5201 delay_class 3 4 # pool 3 is a class 4 pool
5202 delay_class 4 5 # pool 4 is a class 5 pool
5203
5204 The delay pool classes are:
5205
5206 class 1 Everything is limited by a single aggregate
5207 bucket.
5208
5209 class 2 Everything is limited by a single aggregate
5210 bucket as well as an "individual" bucket chosen
5211 from bits 25 through 32 of the IPv4 address.
5212
5213 class 3 Everything is limited by a single aggregate
5214 bucket as well as a "network" bucket chosen
5215 from bits 17 through 24 of the IP address and a
5216 "individual" bucket chosen from bits 17 through
5217 32 of the IPv4 address.
5218
5219 class 4 Everything in a class 3 delay pool, with an
5220 additional limit on a per user basis. This
5221 only takes effect if the username is established
5222 in advance - by forcing authentication in your
5223 http_access rules.
5224
5225 class 5 Requests are grouped according their tag (see
5226 external_acl's tag= reply).
5227
5228
5229 Each pool also requires a delay_parameters directive to configure the pool size
5230 and speed limits used whenever the pool is applied to a request. Along with
5231 a set of delay_access directives to determine when it is used.
5232
5233 NOTE: If an IP address is a.b.c.d
5234 -> bits 25 through 32 are "d"
5235 -> bits 17 through 24 are "c"
5236 -> bits 17 through 32 are "c * 256 + d"
5237
5238 NOTE-2: Due to the use of bitmasks in class 2,3,4 pools they only apply to
5239 IPv4 traffic. Class 1 and 5 pools may be used with IPv6 traffic.
5240 DOC_END
5241
5242 NAME: delay_access
5243 TYPE: delay_pool_access
5244 DEFAULT: none
5245 IFDEF: USE_DELAY_POOLS
5246 LOC: Config.Delay
5247 DOC_START
5248 This is used to determine which delay pool a request falls into.
5249
5250 delay_access is sorted per pool and the matching starts with pool 1,
5251 then pool 2, ..., and finally pool N. The first delay pool where the
5252 request is allowed is selected for the request. If it does not allow
5253 the request to any pool then the request is not delayed (default).
5254
5255 For example, if you want some_big_clients in delay
5256 pool 1 and lotsa_little_clients in delay pool 2:
5257
5258 Example:
5259 delay_access 1 allow some_big_clients
5260 delay_access 1 deny all
5261 delay_access 2 allow lotsa_little_clients
5262 delay_access 2 deny all
5263 delay_access 3 allow authenticated_clients
5264 DOC_END
5265
5266 NAME: delay_parameters
5267 TYPE: delay_pool_rates
5268 DEFAULT: none
5269 IFDEF: USE_DELAY_POOLS
5270 LOC: Config.Delay
5271 DOC_START
5272 This defines the parameters for a delay pool. Each delay pool has
5273 a number of "buckets" associated with it, as explained in the
5274 description of delay_class.
5275
5276 For a class 1 delay pool, the syntax is:
5277 delay_pools pool 1
5278 delay_parameters pool aggregate
5279
5280 For a class 2 delay pool:
5281 delay_pools pool 2
5282 delay_parameters pool aggregate individual
5283
5284 For a class 3 delay pool:
5285 delay_pools pool 3
5286 delay_parameters pool aggregate network individual
5287
5288 For a class 4 delay pool:
5289 delay_pools pool 4
5290 delay_parameters pool aggregate network individual user
5291
5292 For a class 5 delay pool:
5293 delay_pools pool 5
5294 delay_parameters pool tagrate
5295
5296 The option variables are:
5297
5298 pool a pool number - ie, a number between 1 and the
5299 number specified in delay_pools as used in
5300 delay_class lines.
5301
5302 aggregate the speed limit parameters for the aggregate bucket
5303 (class 1, 2, 3).
5304
5305 individual the speed limit parameters for the individual
5306 buckets (class 2, 3).
5307
5308 network the speed limit parameters for the network buckets
5309 (class 3).
5310
5311 user the speed limit parameters for the user buckets
5312 (class 4).
5313
5314 tagrate the speed limit parameters for the tag buckets
5315 (class 5).
5316
5317 A pair of delay parameters is written restore/maximum, where restore is
5318 the number of bytes (not bits - modem and network speeds are usually
5319 quoted in bits) per second placed into the bucket, and maximum is the
5320 maximum number of bytes which can be in the bucket at any time.
5321
5322 There must be one delay_parameters line for each delay pool.
5323
5324
5325 For example, if delay pool number 1 is a class 2 delay pool as in the
5326 above example, and is being used to strictly limit each host to 64Kbit/sec
5327 (plus overheads), with no overall limit, the line is:
5328
5329 delay_parameters 1 -1/-1 8000/8000
5330
5331 Note that 8 x 8000 KByte/sec -> 64Kbit/sec.
5332
5333 Note that the figure -1 is used to represent "unlimited".
5334
5335
5336 And, if delay pool number 2 is a class 3 delay pool as in the above
5337 example, and you want to limit it to a total of 256Kbit/sec (strict limit)
5338 with each 8-bit network permitted 64Kbit/sec (strict limit) and each
5339 individual host permitted 4800bit/sec with a bucket maximum size of 64Kbits
5340 to permit a decent web page to be downloaded at a decent speed
5341 (if the network is not being limited due to overuse) but slow down
5342 large downloads more significantly:
5343
5344 delay_parameters 2 32000/32000 8000/8000 600/8000
5345
5346 Note that 8 x 32000 KByte/sec -> 256Kbit/sec.
5347 8 x 8000 KByte/sec -> 64Kbit/sec.
5348 8 x 600 Byte/sec -> 4800bit/sec.
5349
5350
5351 Finally, for a class 4 delay pool as in the example - each user will
5352 be limited to 128Kbits/sec no matter how many workstations they are logged into.:
5353
5354 delay_parameters 4 32000/32000 8000/8000 600/64000 16000/16000
5355 DOC_END
5356
5357 NAME: delay_initial_bucket_level
5358 COMMENT: (percent, 0-100)
5359 TYPE: u_short
5360 DEFAULT: 50
5361 IFDEF: USE_DELAY_POOLS
5362 LOC: Config.Delay.initial
5363 DOC_START
5364 The initial bucket percentage is used to determine how much is put
5365 in each bucket when squid starts, is reconfigured, or first notices
5366 a host accessing it (in class 2 and class 3, individual hosts and
5367 networks only have buckets associated with them once they have been
5368 "seen" by squid).
5369 DOC_END
5370
5371 COMMENT_START
5372 CLIENT DELAY POOL PARAMETERS
5373 -----------------------------------------------------------------------------
5374 COMMENT_END
5375
5376 NAME: client_delay_pools
5377 TYPE: client_delay_pool_count
5378 DEFAULT: 0
5379 IFDEF: USE_DELAY_POOLS
5380 LOC: Config.ClientDelay
5381 DOC_START
5382 This option specifies the number of client delay pools used. It must
5383 preceed other client_delay_* options.
5384
5385 Example:
5386 client_delay_pools 2
5387 DOC_END
5388
5389 NAME: client_delay_initial_bucket_level
5390 COMMENT: (percent, 0-no_limit)
5391 TYPE: u_short
5392 DEFAULT: 50
5393 IFDEF: USE_DELAY_POOLS
5394 LOC: Config.ClientDelay.initial
5395 DOC_START
5396 This option determines the initial bucket size as a percentage of
5397 max_bucket_size from client_delay_parameters. Buckets are created
5398 at the time of the "first" connection from the matching IP. Idle
5399 buckets are periodically deleted up.
5400
5401 You can specify more than 100 percent but note that such "oversized"
5402 buckets are not refilled until their size goes down to max_bucket_size
5403 from client_delay_parameters.
5404
5405 Example:
5406 client_delay_initial_bucket_level 50
5407 DOC_END
5408
5409 NAME: client_delay_parameters
5410 TYPE: client_delay_pool_rates
5411 DEFAULT: none
5412 IFDEF: USE_DELAY_POOLS
5413 LOC: Config.ClientDelay
5414 DOC_START
5415
5416 This option configures client-side bandwidth limits using the
5417 following format:
5418
5419 client_delay_parameters pool speed_limit max_bucket_size
5420
5421 pool is an integer ID used for client_delay_access matching.
5422
5423 speed_limit is bytes added to the bucket per second.
5424
5425 max_bucket_size is the maximum size of a bucket, enforced after any
5426 speed_limit additions.
5427
5428 Please see the delay_parameters option for more information and
5429 examples.
5430
5431 Example:
5432 client_delay_parameters 1 1024 2048
5433 client_delay_parameters 2 51200 16384
5434 DOC_END
5435
5436 NAME: client_delay_access
5437 TYPE: client_delay_pool_access
5438 DEFAULT: none
5439 IFDEF: USE_DELAY_POOLS
5440 LOC: Config.ClientDelay
5441 DOC_START
5442
5443 This option determines the client-side delay pool for the
5444 request:
5445
5446 client_delay_access pool_ID allow|deny acl_name
5447
5448 All client_delay_access options are checked in their pool ID
5449 order, starting with pool 1. The first checked pool with allowed
5450 request is selected for the request. If no ACL matches or there
5451 are no client_delay_access options, the request bandwidth is not
5452 limited.
5453
5454 The ACL-selected pool is then used to find the
5455 client_delay_parameters for the request. Client-side pools are
5456 not used to aggregate clients. Clients are always aggregated
5457 based on their source IP addresses (one bucket per source IP).
5458
5459 Please see delay_access for more examples.
5460
5461 Example:
5462 client_delay_access 1 allow low_rate_network
5463 client_delay_access 2 allow vips_network
5464 DOC_END
5465
5466 COMMENT_START
5467 WCCPv1 AND WCCPv2 CONFIGURATION OPTIONS
5468 -----------------------------------------------------------------------------
5469 COMMENT_END
5470
5471 NAME: wccp_router
5472 TYPE: address
5473 LOC: Config.Wccp.router
5474 DEFAULT: any_addr
5475 IFDEF: USE_WCCP
5476 DOC_START
5477 Use this option to define your WCCP ``home'' router for
5478 Squid.
5479
5480 wccp_router supports a single WCCP(v1) router
5481
5482 wccp2_router supports multiple WCCPv2 routers
5483
5484 only one of the two may be used at the same time and defines
5485 which version of WCCP to use.
5486 DOC_END
5487
5488 NAME: wccp2_router
5489 TYPE: IpAddress_list
5490 LOC: Config.Wccp2.router
5491 DEFAULT: none
5492 IFDEF: USE_WCCPv2
5493 DOC_START
5494 Use this option to define your WCCP ``home'' router for
5495 Squid.
5496
5497 wccp_router supports a single WCCP(v1) router
5498
5499 wccp2_router supports multiple WCCPv2 routers
5500
5501 only one of the two may be used at the same time and defines
5502 which version of WCCP to use.
5503 DOC_END
5504
5505 NAME: wccp_version
5506 TYPE: int
5507 LOC: Config.Wccp.version
5508 DEFAULT: 4
5509 IFDEF: USE_WCCP
5510 DOC_START
5511 This directive is only relevant if you need to set up WCCP(v1)
5512 to some very old and end-of-life Cisco routers. In all other
5513 setups it must be left unset or at the default setting.
5514 It defines an internal version in the WCCP(v1) protocol,
5515 with version 4 being the officially documented protocol.
5516
5517 According to some users, Cisco IOS 11.2 and earlier only
5518 support WCCP version 3. If you're using that or an earlier
5519 version of IOS, you may need to change this value to 3, otherwise
5520 do not specify this parameter.
5521 DOC_END
5522
5523 NAME: wccp2_rebuild_wait
5524 TYPE: onoff
5525 LOC: Config.Wccp2.rebuildwait
5526 DEFAULT: on
5527 IFDEF: USE_WCCPv2
5528 DOC_START
5529 If this is enabled Squid will wait for the cache dir rebuild to finish
5530 before sending the first wccp2 HereIAm packet
5531 DOC_END
5532
5533 NAME: wccp2_forwarding_method
5534 TYPE: wccp2_method
5535 LOC: Config.Wccp2.forwarding_method
5536 DEFAULT: gre
5537 IFDEF: USE_WCCPv2
5538 DOC_START
5539 WCCP2 allows the setting of forwarding methods between the
5540 router/switch and the cache. Valid values are as follows:
5541
5542 gre - GRE encapsulation (forward the packet in a GRE/WCCP tunnel)
5543 l2 - L2 redirect (forward the packet using Layer 2/MAC rewriting)
5544
5545 Currently (as of IOS 12.4) cisco routers only support GRE.
5546 Cisco switches only support the L2 redirect assignment method.
5547 DOC_END
5548
5549 NAME: wccp2_return_method
5550 TYPE: wccp2_method
5551 LOC: Config.Wccp2.return_method
5552 DEFAULT: gre
5553 IFDEF: USE_WCCPv2
5554 DOC_START
5555 WCCP2 allows the setting of return methods between the
5556 router/switch and the cache for packets that the cache
5557 decides not to handle. Valid values are as follows:
5558
5559 gre - GRE encapsulation (forward the packet in a GRE/WCCP tunnel)
5560 l2 - L2 redirect (forward the packet using Layer 2/MAC rewriting)
5561
5562 Currently (as of IOS 12.4) cisco routers only support GRE.
5563 Cisco switches only support the L2 redirect assignment.
5564
5565 If the "ip wccp redirect exclude in" command has been
5566 enabled on the cache interface, then it is still safe for
5567 the proxy server to use a l2 redirect method even if this
5568 option is set to GRE.
5569 DOC_END
5570
5571 NAME: wccp2_assignment_method
5572 TYPE: wccp2_amethod
5573 LOC: Config.Wccp2.assignment_method
5574 DEFAULT: hash
5575 IFDEF: USE_WCCPv2
5576 DOC_START
5577 WCCP2 allows the setting of methods to assign the WCCP hash
5578 Valid values are as follows:
5579
5580 hash - Hash assignment
5581 mask - Mask assignment
5582
5583 As a general rule, cisco routers support the hash assignment method
5584 and cisco switches support the mask assignment method.
5585 DOC_END
5586
5587 NAME: wccp2_service
5588 TYPE: wccp2_service
5589 LOC: Config.Wccp2.info
5590 DEFAULT_IF_NONE: standard 0
5591 IFDEF: USE_WCCPv2
5592 DOC_START
5593 WCCP2 allows for multiple traffic services. There are two
5594 types: "standard" and "dynamic". The standard type defines
5595 one service id - http (id 0). The dynamic service ids can be from
5596 51 to 255 inclusive. In order to use a dynamic service id
5597 one must define the type of traffic to be redirected; this is done
5598 using the wccp2_service_info option.
5599
5600 The "standard" type does not require a wccp2_service_info option,
5601 just specifying the service id will suffice.
5602
5603 MD5 service authentication can be enabled by adding
5604 "password=<password>" to the end of this service declaration.
5605
5606 Examples:
5607
5608 wccp2_service standard 0 # for the 'web-cache' standard service
5609 wccp2_service dynamic 80 # a dynamic service type which will be
5610 # fleshed out with subsequent options.
5611 wccp2_service standard 0 password=foo
5612 DOC_END
5613
5614 NAME: wccp2_service_info
5615 TYPE: wccp2_service_info
5616 LOC: Config.Wccp2.info
5617 DEFAULT: none
5618 IFDEF: USE_WCCPv2
5619 DOC_START
5620 Dynamic WCCPv2 services require further information to define the
5621 traffic you wish to have diverted.
5622
5623 The format is:
5624
5625 wccp2_service_info <id> protocol=<protocol> flags=<flag>,<flag>..
5626 priority=<priority> ports=<port>,<port>..
5627
5628 The relevant WCCPv2 flags:
5629 + src_ip_hash, dst_ip_hash
5630 + source_port_hash, dst_port_hash
5631 + src_ip_alt_hash, dst_ip_alt_hash
5632 + src_port_alt_hash, dst_port_alt_hash
5633 + ports_source
5634
5635 The port list can be one to eight entries.
5636
5637 Example:
5638
5639 wccp2_service_info 80 protocol=tcp flags=src_ip_hash,ports_source
5640 priority=240 ports=80
5641
5642 Note: the service id must have been defined by a previous
5643 'wccp2_service dynamic <id>' entry.
5644 DOC_END
5645
5646 NAME: wccp2_weight
5647 TYPE: int
5648 LOC: Config.Wccp2.weight
5649 DEFAULT: 10000
5650 IFDEF: USE_WCCPv2
5651 DOC_START
5652 Each cache server gets assigned a set of the destination
5653 hash proportional to their weight.
5654 DOC_END
5655
5656 NAME: wccp_address
5657 TYPE: address
5658 LOC: Config.Wccp.address
5659 DEFAULT: 0.0.0.0
5660 IFDEF: USE_WCCP
5661 DOC_NONE
5662
5663 NAME: wccp2_address
5664 TYPE: address
5665 LOC: Config.Wccp2.address
5666 DEFAULT: 0.0.0.0
5667 IFDEF: USE_WCCPv2
5668 DOC_START
5669 Use this option if you require WCCP to use a specific
5670 interface address.
5671
5672 The default behavior is to not bind to any specific address.
5673 DOC_END
5674
5675 COMMENT_START
5676 PERSISTENT CONNECTION HANDLING
5677 -----------------------------------------------------------------------------
5678
5679 Also see "pconn_timeout" in the TIMEOUTS section
5680 COMMENT_END
5681
5682 NAME: client_persistent_connections
5683 TYPE: onoff
5684 LOC: Config.onoff.client_pconns
5685 DEFAULT: on
5686 DOC_NONE
5687
5688 NAME: server_persistent_connections
5689 TYPE: onoff
5690 LOC: Config.onoff.server_pconns
5691 DEFAULT: on
5692 DOC_START
5693 Persistent connection support for clients and servers. By
5694 default, Squid uses persistent connections (when allowed)
5695 with its clients and servers. You can use these options to
5696 disable persistent connections with clients and/or servers.
5697 DOC_END
5698
5699 NAME: persistent_connection_after_error
5700 TYPE: onoff
5701 LOC: Config.onoff.error_pconns
5702 DEFAULT: on
5703 DOC_START
5704 With this directive the use of persistent connections after
5705 HTTP errors can be disabled. Useful if you have clients
5706 who fail to handle errors on persistent connections proper.
5707 DOC_END
5708
5709 NAME: detect_broken_pconn
5710 TYPE: onoff
5711 LOC: Config.onoff.detect_broken_server_pconns
5712 DEFAULT: off
5713 DOC_START
5714 Some servers have been found to incorrectly signal the use
5715 of HTTP/1.0 persistent connections even on replies not
5716 compatible, causing significant delays. This server problem
5717 has mostly been seen on redirects.
5718
5719 By enabling this directive Squid attempts to detect such
5720 broken replies and automatically assume the reply is finished
5721 after 10 seconds timeout.
5722 DOC_END
5723
5724 COMMENT_START
5725 CACHE DIGEST OPTIONS
5726 -----------------------------------------------------------------------------
5727 COMMENT_END
5728
5729 NAME: digest_generation
5730 IFDEF: USE_CACHE_DIGESTS
5731 TYPE: onoff
5732 LOC: Config.onoff.digest_generation
5733 DEFAULT: on
5734 DOC_START
5735 This controls whether the server will generate a Cache Digest
5736 of its contents. By default, Cache Digest generation is
5737 enabled if Squid is compiled with --enable-cache-digests defined.
5738 DOC_END
5739
5740 NAME: digest_bits_per_entry
5741 IFDEF: USE_CACHE_DIGESTS
5742 TYPE: int
5743 LOC: Config.digest.bits_per_entry
5744 DEFAULT: 5
5745 DOC_START
5746 This is the number of bits of the server's Cache Digest which
5747 will be associated with the Digest entry for a given HTTP
5748 Method and URL (public key) combination. The default is 5.
5749 DOC_END
5750
5751 NAME: digest_rebuild_period
5752 IFDEF: USE_CACHE_DIGESTS
5753 COMMENT: (seconds)
5754 TYPE: time_t
5755 LOC: Config.digest.rebuild_period
5756 DEFAULT: 1 hour
5757 DOC_START
5758 This is the wait time between Cache Digest rebuilds.
5759 DOC_END
5760
5761 NAME: digest_rewrite_period
5762 COMMENT: (seconds)
5763 IFDEF: USE_CACHE_DIGESTS
5764 TYPE: time_t
5765 LOC: Config.digest.rewrite_period
5766 DEFAULT: 1 hour
5767 DOC_START
5768 This is the wait time between Cache Digest writes to
5769 disk.
5770 DOC_END
5771
5772 NAME: digest_swapout_chunk_size
5773 COMMENT: (bytes)
5774 TYPE: b_size_t
5775 IFDEF: USE_CACHE_DIGESTS
5776 LOC: Config.digest.swapout_chunk_size
5777 DEFAULT: 4096 bytes
5778 DOC_START
5779 This is the number of bytes of the Cache Digest to write to
5780 disk at a time. It defaults to 4096 bytes (4KB), the Squid
5781 default swap page.
5782 DOC_END
5783
5784 NAME: digest_rebuild_chunk_percentage
5785 COMMENT: (percent, 0-100)
5786 IFDEF: USE_CACHE_DIGESTS
5787 TYPE: int
5788 LOC: Config.digest.rebuild_chunk_percentage
5789 DEFAULT: 10
5790 DOC_START
5791 This is the percentage of the Cache Digest to be scanned at a
5792 time. By default it is set to 10% of the Cache Digest.
5793 DOC_END
5794
5795 COMMENT_START
5796 SNMP OPTIONS
5797 -----------------------------------------------------------------------------
5798 COMMENT_END
5799
5800 NAME: snmp_port
5801 TYPE: u_short
5802 LOC: Config.Port.snmp
5803 DEFAULT: 0
5804 IFDEF: SQUID_SNMP
5805 DOC_START
5806 The port number where Squid listens for SNMP requests. To enable
5807 SNMP support set this to a suitable port number. Port number
5808 3401 is often used for the Squid SNMP agent. By default it's
5809 set to "0" (disabled)
5810
5811 Example:
5812 snmp_port 3401
5813 DOC_END
5814
5815 NAME: snmp_access
5816 TYPE: acl_access
5817 LOC: Config.accessList.snmp
5818 DEFAULT_IF_NONE: deny all
5819 IFDEF: SQUID_SNMP
5820 DOC_START
5821 Allowing or denying access to the SNMP port.
5822
5823 All access to the agent is denied by default.
5824 usage:
5825
5826 snmp_access allow|deny [!]aclname ...
5827
5828 This clause only supports fast acl types.
5829 See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
5830 Example:
5831 snmp_access allow snmppublic localhost
5832 snmp_access deny all
5833 DOC_END
5834
5835 NAME: snmp_incoming_address
5836 TYPE: address
5837 LOC: Config.Addrs.snmp_incoming
5838 DEFAULT: any_addr
5839 IFDEF: SQUID_SNMP
5840 DOC_NONE
5841
5842 NAME: snmp_outgoing_address
5843 TYPE: address
5844 LOC: Config.Addrs.snmp_outgoing
5845 DEFAULT: no_addr
5846 IFDEF: SQUID_SNMP
5847 DOC_START
5848 Just like 'udp_incoming_address', but for the SNMP port.
5849
5850 snmp_incoming_address is used for the SNMP socket receiving
5851 messages from SNMP agents.
5852 snmp_outgoing_address is used for SNMP packets returned to SNMP
5853 agents.
5854
5855 The default snmp_incoming_address is to listen on all
5856 available network interfaces.
5857
5858 If snmp_outgoing_address is not set it will use the same socket
5859 as snmp_incoming_address. Only change this if you want to have
5860 SNMP replies sent using another address than where this Squid
5861 listens for SNMP queries.
5862
5863 NOTE, snmp_incoming_address and snmp_outgoing_address can not have
5864 the same value since they both use port 3401.
5865 DOC_END
5866
5867 COMMENT_START
5868 ICP OPTIONS
5869 -----------------------------------------------------------------------------
5870 COMMENT_END
5871
5872 NAME: icp_port udp_port
5873 TYPE: u_short
5874 DEFAULT: 0
5875 LOC: Config.Port.icp
5876 DOC_START
5877 The port number where Squid sends and receives ICP queries to
5878 and from neighbor caches. The standard UDP port for ICP is 3130.
5879 Default is disabled (0).
5880
5881 Example:
5882 icp_port @DEFAULT_ICP_PORT@
5883 DOC_END
5884
5885 NAME: htcp_port
5886 IFDEF: USE_HTCP
5887 TYPE: u_short
5888 DEFAULT: 0
5889 LOC: Config.Port.htcp
5890 DOC_START
5891 The port number where Squid sends and receives HTCP queries to
5892 and from neighbor caches. To turn it on you want to set it to
5893 4827. By default it is set to "0" (disabled).
5894
5895 Example:
5896 htcp_port 4827
5897 DOC_END
5898
5899 NAME: log_icp_queries
5900 COMMENT: on|off
5901 TYPE: onoff
5902 DEFAULT: on
5903 LOC: Config.onoff.log_udp
5904 DOC_START
5905 If set, ICP queries are logged to access.log. You may wish
5906 do disable this if your ICP load is VERY high to speed things
5907 up or to simplify log analysis.
5908 DOC_END
5909
5910 NAME: udp_incoming_address
5911 TYPE: address
5912 LOC:Config.Addrs.udp_incoming
5913 DEFAULT: any_addr
5914 DOC_START
5915 udp_incoming_address is used for UDP packets received from other
5916 caches.
5917
5918 The default behavior is to not bind to any specific address.
5919
5920 Only change this if you want to have all UDP queries received on
5921 a specific interface/address.
5922
5923 NOTE: udp_incoming_address is used by the ICP, HTCP, and DNS
5924 modules. Altering it will affect all of them in the same manner.
5925
5926 see also; udp_outgoing_address
5927
5928 NOTE, udp_incoming_address and udp_outgoing_address can not
5929 have the same value since they both use the same port.
5930 DOC_END
5931
5932 NAME: udp_outgoing_address
5933 TYPE: address
5934 LOC: Config.Addrs.udp_outgoing
5935 DEFAULT: no_addr
5936 DOC_START
5937 udp_outgoing_address is used for UDP packets sent out to other
5938 caches.
5939
5940 The default behavior is to not bind to any specific address.
5941
5942 Instead it will use the same socket as udp_incoming_address.
5943 Only change this if you want to have UDP queries sent using another
5944 address than where this Squid listens for UDP queries from other
5945 caches.
5946
5947 NOTE: udp_outgoing_address is used by the ICP, HTCP, and DNS
5948 modules. Altering it will affect all of them in the same manner.
5949
5950 see also; udp_incoming_address
5951
5952 NOTE, udp_incoming_address and udp_outgoing_address can not
5953 have the same value since they both use the same port.
5954 DOC_END
5955
5956 NAME: icp_hit_stale
5957 COMMENT: on|off
5958 TYPE: onoff
5959 DEFAULT: off
5960 LOC: Config.onoff.icp_hit_stale
5961 DOC_START
5962 If you want to return ICP_HIT for stale cache objects, set this
5963 option to 'on'. If you have sibling relationships with caches
5964 in other administrative domains, this should be 'off'. If you only
5965 have sibling relationships with caches under your control,
5966 it is probably okay to set this to 'on'.
5967 If set to 'on', your siblings should use the option "allow-miss"
5968 on their cache_peer lines for connecting to you.
5969 DOC_END
5970
5971 NAME: minimum_direct_hops
5972 TYPE: int
5973 DEFAULT: 4
5974 LOC: Config.minDirectHops
5975 DOC_START
5976 If using the ICMP pinging stuff, do direct fetches for sites
5977 which are no more than this many hops away.
5978 DOC_END
5979
5980 NAME: minimum_direct_rtt
5981 TYPE: int
5982 DEFAULT: 400
5983 LOC: Config.minDirectRtt
5984 DOC_START
5985 If using the ICMP pinging stuff, do direct fetches for sites
5986 which are no more than this many rtt milliseconds away.
5987 DOC_END
5988
5989 NAME: netdb_low
5990 TYPE: int
5991 DEFAULT: 900
5992 LOC: Config.Netdb.low
5993 DOC_NONE
5994
5995 NAME: netdb_high
5996 TYPE: int
5997 DEFAULT: 1000
5998 LOC: Config.Netdb.high
5999 DOC_START
6000 The low and high water marks for the ICMP measurement
6001 database. These are counts, not percents. The defaults are
6002 900 and 1000. When the high water mark is reached, database
6003 entries will be deleted until the low mark is reached.
6004 DOC_END
6005
6006 NAME: netdb_ping_period
6007 TYPE: time_t
6008 LOC: Config.Netdb.period
6009 DEFAULT: 5 minutes
6010 DOC_START
6011 The minimum period for measuring a site. There will be at
6012 least this much delay between successive pings to the same
6013 network. The default is five minutes.
6014 DOC_END
6015
6016 NAME: query_icmp
6017 COMMENT: on|off
6018 TYPE: onoff
6019 DEFAULT: off
6020 LOC: Config.onoff.query_icmp
6021 DOC_START
6022 If you want to ask your peers to include ICMP data in their ICP
6023 replies, enable this option.
6024
6025 If your peer has configured Squid (during compilation) with
6026 '--enable-icmp' that peer will send ICMP pings to origin server
6027 sites of the URLs it receives. If you enable this option the
6028 ICP replies from that peer will include the ICMP data (if available).
6029 Then, when choosing a parent cache, Squid will choose the parent with
6030 the minimal RTT to the origin server. When this happens, the
6031 hierarchy field of the access.log will be
6032 "CLOSEST_PARENT_MISS". This option is off by default.
6033 DOC_END
6034
6035 NAME: test_reachability
6036 COMMENT: on|off
6037 TYPE: onoff
6038 DEFAULT: off
6039 LOC: Config.onoff.test_reachability
6040 DOC_START
6041 When this is 'on', ICP MISS replies will be ICP_MISS_NOFETCH
6042 instead of ICP_MISS if the target host is NOT in the ICMP
6043 database, or has a zero RTT.
6044 DOC_END
6045
6046 NAME: icp_query_timeout
6047 COMMENT: (msec)
6048 DEFAULT: 0
6049 TYPE: int
6050 LOC: Config.Timeout.icp_query
6051 DOC_START
6052 Normally Squid will automatically determine an optimal ICP
6053 query timeout value based on the round-trip-time of recent ICP
6054 queries. If you want to override the value determined by
6055 Squid, set this 'icp_query_timeout' to a non-zero value. This
6056 value is specified in MILLISECONDS, so, to use a 2-second
6057 timeout (the old default), you would write:
6058
6059 icp_query_timeout 2000
6060 DOC_END
6061
6062 NAME: maximum_icp_query_timeout
6063 COMMENT: (msec)
6064 DEFAULT: 2000
6065 TYPE: int
6066 LOC: Config.Timeout.icp_query_max
6067 DOC_START
6068 Normally the ICP query timeout is determined dynamically. But
6069 sometimes it can lead to very large values (say 5 seconds).
6070 Use this option to put an upper limit on the dynamic timeout
6071 value. Do NOT use this option to always use a fixed (instead
6072 of a dynamic) timeout value. To set a fixed timeout see the
6073 'icp_query_timeout' directive.
6074 DOC_END
6075
6076 NAME: minimum_icp_query_timeout
6077 COMMENT: (msec)
6078 DEFAULT: 5
6079 TYPE: int
6080 LOC: Config.Timeout.icp_query_min
6081 DOC_START
6082 Normally the ICP query timeout is determined dynamically. But
6083 sometimes it can lead to very small timeouts, even lower than
6084 the normal latency variance on your link due to traffic.
6085 Use this option to put an lower limit on the dynamic timeout
6086 value. Do NOT use this option to always use a fixed (instead
6087 of a dynamic) timeout value. To set a fixed timeout see the
6088 'icp_query_timeout' directive.
6089 DOC_END
6090
6091 NAME: background_ping_rate
6092 COMMENT: time-units
6093 TYPE: time_t
6094 DEFAULT: 10 seconds
6095 LOC: Config.backgroundPingRate
6096 DOC_START
6097 Controls how often the ICP pings are sent to siblings that
6098 have background-ping set.
6099 DOC_END
6100
6101 COMMENT_START
6102 MULTICAST ICP OPTIONS
6103 -----------------------------------------------------------------------------
6104 COMMENT_END
6105
6106 NAME: mcast_groups
6107 TYPE: wordlist
6108 LOC: Config.mcast_group_list
6109 DEFAULT: none
6110 DOC_START
6111 This tag specifies a list of multicast groups which your server
6112 should join to receive multicasted ICP queries.
6113
6114 NOTE! Be very careful what you put here! Be sure you
6115 understand the difference between an ICP _query_ and an ICP
6116 _reply_. This option is to be set only if you want to RECEIVE
6117 multicast queries. Do NOT set this option to SEND multicast
6118 ICP (use cache_peer for that). ICP replies are always sent via
6119 unicast, so this option does not affect whether or not you will
6120 receive replies from multicast group members.
6121
6122 You must be very careful to NOT use a multicast address which
6123 is already in use by another group of caches.
6124
6125 If you are unsure about multicast, please read the Multicast
6126 chapter in the Squid FAQ (http://www.squid-cache.org/FAQ/).
6127
6128 Usage: mcast_groups 239.128.16.128 224.0.1.20
6129
6130 By default, Squid doesn't listen on any multicast groups.
6131 DOC_END
6132
6133 NAME: mcast_miss_addr
6134 IFDEF: MULTICAST_MISS_STREAM
6135 TYPE: address
6136 LOC: Config.mcast_miss.addr
6137 DEFAULT: no_addr
6138 DOC_START
6139 If you enable this option, every "cache miss" URL will
6140 be sent out on the specified multicast address.
6141
6142 Do not enable this option unless you are are absolutely
6143 certain you understand what you are doing.
6144 DOC_END
6145
6146 NAME: mcast_miss_ttl
6147 IFDEF: MULTICAST_MISS_STREAM
6148 TYPE: u_short
6149 LOC: Config.mcast_miss.ttl
6150 DEFAULT: 16
6151 DOC_START
6152 This is the time-to-live value for packets multicasted
6153 when multicasting off cache miss URLs is enabled. By
6154 default this is set to 'site scope', i.e. 16.
6155 DOC_END
6156
6157 NAME: mcast_miss_port
6158 IFDEF: MULTICAST_MISS_STREAM
6159 TYPE: u_short
6160 LOC: Config.mcast_miss.port
6161 DEFAULT: 3135
6162 DOC_START
6163 This is the port number to be used in conjunction with
6164 'mcast_miss_addr'.
6165 DOC_END
6166
6167 NAME: mcast_miss_encode_key
6168 IFDEF: MULTICAST_MISS_STREAM
6169 TYPE: string
6170 LOC: Config.mcast_miss.encode_key
6171 DEFAULT: XXXXXXXXXXXXXXXX
6172 DOC_START
6173 The URLs that are sent in the multicast miss stream are
6174 encrypted. This is the encryption key.
6175 DOC_END
6176
6177 NAME: mcast_icp_query_timeout
6178 COMMENT: (msec)
6179 DEFAULT: 2000
6180 TYPE: int
6181 LOC: Config.Timeout.mcast_icp_query
6182 DOC_START
6183 For multicast peers, Squid regularly sends out ICP "probes" to
6184 count how many other peers are listening on the given multicast
6185 address. This value specifies how long Squid should wait to
6186 count all the replies. The default is 2000 msec, or 2
6187 seconds.
6188 DOC_END
6189
6190 COMMENT_START
6191 INTERNAL ICON OPTIONS
6192 -----------------------------------------------------------------------------
6193 COMMENT_END
6194
6195 NAME: icon_directory
6196 TYPE: string
6197 LOC: Config.icons.directory
6198 DEFAULT: @DEFAULT_ICON_DIR@
6199 DOC_START
6200 Where the icons are stored. These are normally kept in
6201 @DEFAULT_ICON_DIR@
6202 DOC_END
6203
6204 NAME: global_internal_static
6205 TYPE: onoff
6206 LOC: Config.onoff.global_internal_static
6207 DEFAULT: on
6208 DOC_START
6209 This directive controls is Squid should intercept all requests for
6210 /squid-internal-static/ no matter which host the URL is requesting
6211 (default on setting), or if nothing special should be done for
6212 such URLs (off setting). The purpose of this directive is to make
6213 icons etc work better in complex cache hierarchies where it may
6214 not always be possible for all corners in the cache mesh to reach
6215 the server generating a directory listing.
6216 DOC_END
6217
6218 NAME: short_icon_urls
6219 TYPE: onoff
6220 LOC: Config.icons.use_short_names
6221 DEFAULT: on
6222 DOC_START
6223 If this is enabled Squid will use short URLs for icons.
6224 If disabled it will revert to the old behavior of including
6225 it's own name and port in the URL.
6226
6227 If you run a complex cache hierarchy with a mix of Squid and
6228 other proxies you may need to disable this directive.
6229 DOC_END
6230
6231 COMMENT_START
6232 ERROR PAGE OPTIONS
6233 -----------------------------------------------------------------------------
6234 COMMENT_END
6235
6236 NAME: error_directory
6237 TYPE: string
6238 LOC: Config.errorDirectory
6239 DEFAULT: none
6240 DOC_START
6241 If you wish to create your own versions of the default
6242 error files to customize them to suit your company copy
6243 the error/template files to another directory and point
6244 this tag at them.
6245
6246 WARNING: This option will disable multi-language support
6247 on error pages if used.
6248
6249 The squid developers are interested in making squid available in
6250 a wide variety of languages. If you are making translations for a
6251 language that Squid does not currently provide please consider
6252 contributing your translation back to the project.
6253 http://wiki.squid-cache.org/Translations
6254
6255 The squid developers working on translations are happy to supply drop-in
6256 translated error files in exchange for any new language contributions.
6257 DOC_END
6258
6259 NAME: error_default_language
6260 IFDEF: USE_ERR_LOCALES
6261 TYPE: string
6262 LOC: Config.errorDefaultLanguage
6263 DEFAULT: none
6264 DOC_START
6265 Set the default language which squid will send error pages in
6266 if no existing translation matches the clients language
6267 preferences.
6268
6269 If unset (default) generic English will be used.
6270
6271 The squid developers are interested in making squid available in
6272 a wide variety of languages. If you are interested in making
6273 translations for any language see the squid wiki for details.
6274 http://wiki.squid-cache.org/Translations
6275 DOC_END
6276
6277 NAME: error_log_languages
6278 IFDEF: USE_ERR_LOCALES
6279 TYPE: onoff
6280 LOC: Config.errorLogMissingLanguages
6281 DEFAULT: on
6282 DOC_START
6283 Log to cache.log what languages users are attempting to
6284 auto-negotiate for translations.
6285
6286 Successful negotiations are not logged. Only failures
6287 have meaning to indicate that Squid may need an upgrade
6288 of its error page translations.
6289 DOC_END
6290
6291 NAME: err_page_stylesheet
6292 TYPE: string
6293 LOC: Config.errorStylesheet
6294 DEFAULT: @DEFAULT_CONFIG_DIR@/errorpage.css
6295 DOC_START
6296 CSS Stylesheet to pattern the display of Squid default error pages.
6297
6298 For information on CSS see http://www.w3.org/Style/CSS/
6299 DOC_END
6300
6301 NAME: err_html_text
6302 TYPE: eol
6303 LOC: Config.errHtmlText
6304 DEFAULT: none
6305 DOC_START
6306 HTML text to include in error messages. Make this a "mailto"
6307 URL to your admin address, or maybe just a link to your
6308 organizations Web page.
6309
6310 To include this in your error messages, you must rewrite
6311 the error template files (found in the "errors" directory).
6312 Wherever you want the 'err_html_text' line to appear,
6313 insert a %L tag in the error template file.
6314 DOC_END
6315
6316 NAME: email_err_data
6317 COMMENT: on|off
6318 TYPE: onoff
6319 LOC: Config.onoff.emailErrData
6320 DEFAULT: on
6321 DOC_START
6322 If enabled, information about the occurred error will be
6323 included in the mailto links of the ERR pages (if %W is set)
6324 so that the email body contains the data.
6325 Syntax is <A HREF="mailto:%w%W">%w</A>
6326 DOC_END
6327
6328 NAME: deny_info
6329 TYPE: denyinfo
6330 LOC: Config.denyInfoList
6331 DEFAULT: none
6332 DOC_START
6333 Usage: deny_info err_page_name acl
6334 or deny_info http://... acl
6335 or deny_info TCP_RESET acl
6336
6337 This can be used to return a ERR_ page for requests which
6338 do not pass the 'http_access' rules. Squid remembers the last
6339 acl it evaluated in http_access, and if a 'deny_info' line exists
6340 for that ACL Squid returns a corresponding error page.
6341
6342 The acl is typically the last acl on the http_access deny line which
6343 denied access. The exceptions to this rule are:
6344 - When Squid needs to request authentication credentials. It's then
6345 the first authentication related acl encountered
6346 - When none of the http_access lines matches. It's then the last
6347 acl processed on the last http_access line.
6348 - When the decision to deny access was made by an adaptation service,
6349 the acl name is the corresponding eCAP or ICAP service_name.
6350
6351 NP: If providing your own custom error pages with error_directory
6352 you may also specify them by your custom file name:
6353 Example: deny_info ERR_CUSTOM_ACCESS_DENIED bad_guys
6354
6355 By defaut Squid will send "403 Forbidden". A different 4xx or 5xx
6356 may be specified by prefixing the file name with the code and a colon.
6357 e.g. 404:ERR_CUSTOM_ACCESS_DENIED
6358
6359 Alternatively you can tell Squid to reset the TCP connection
6360 by specifying TCP_RESET.
6361
6362 Or you can specify an error URL or URL pattern. The browsers will
6363 get redirected to the specified URL after formatting tags have
6364 been replaced. Redirect will be done with 302 or 307 according to
6365 HTTP/1.1 specs. A different 3xx code may be specified by prefixing
6366 the URL. e.g. 303:http://example.com/
6367
6368 URL FORMAT TAGS:
6369 %a - username (if available. Password NOT included)
6370 %B - FTP path URL
6371 %e - Error number
6372 %E - Error description
6373 %h - Squid hostname
6374 %H - Request domain name
6375 %i - Client IP Address
6376 %M - Request Method
6377 %o - Message result from external ACL helper
6378 %p - Request Port number
6379 %P - Request Protocol name
6380 %R - Request URL path
6381 %T - Timestamp in RFC 1123 format
6382 %U - Full canonical URL from client
6383 (HTTPS URLs terminate with *)
6384 %u - Full canonical URL from client
6385 %w - Admin email from squid.conf
6386 %x - Error name
6387 %% - Literal percent (%) code
6388
6389 DOC_END
6390
6391 COMMENT_START
6392 OPTIONS INFLUENCING REQUEST FORWARDING
6393 -----------------------------------------------------------------------------
6394 COMMENT_END
6395
6396 NAME: nonhierarchical_direct
6397 TYPE: onoff
6398 LOC: Config.onoff.nonhierarchical_direct
6399 DEFAULT: on
6400 DOC_START
6401 By default, Squid will send any non-hierarchical requests
6402 (matching hierarchy_stoplist or not cacheable request type) direct
6403 to origin servers.
6404
6405 If you set this to off, Squid will prefer to send these
6406 requests to parents.
6407
6408 Note that in most configurations, by turning this off you will only
6409 add latency to these request without any improvement in global hit
6410 ratio.
6411
6412 If you are inside an firewall see never_direct instead of
6413 this directive.
6414 DOC_END
6415
6416 NAME: prefer_direct
6417 TYPE: onoff
6418 LOC: Config.onoff.prefer_direct
6419 DEFAULT: off
6420 DOC_START
6421 Normally Squid tries to use parents for most requests. If you for some
6422 reason like it to first try going direct and only use a parent if
6423 going direct fails set this to on.
6424
6425 By combining nonhierarchical_direct off and prefer_direct on you
6426 can set up Squid to use a parent as a backup path if going direct
6427 fails.
6428
6429 Note: If you want Squid to use parents for all requests see
6430 the never_direct directive. prefer_direct only modifies how Squid
6431 acts on cacheable requests.
6432 DOC_END
6433
6434 NAME: always_direct
6435 TYPE: acl_access
6436 LOC: Config.accessList.AlwaysDirect
6437 DEFAULT: none
6438 DOC_START
6439 Usage: always_direct allow|deny [!]aclname ...
6440
6441 Here you can use ACL elements to specify requests which should
6442 ALWAYS be forwarded by Squid to the origin servers without using
6443 any peers. For example, to always directly forward requests for
6444 local servers ignoring any parents or siblings you may have use
6445 something like:
6446
6447 acl local-servers dstdomain my.domain.net
6448 always_direct allow local-servers
6449
6450 To always forward FTP requests directly, use
6451
6452 acl FTP proto FTP
6453 always_direct allow FTP
6454
6455 NOTE: There is a similar, but opposite option named
6456 'never_direct'. You need to be aware that "always_direct deny
6457 foo" is NOT the same thing as "never_direct allow foo". You
6458 may need to use a deny rule to exclude a more-specific case of
6459 some other rule. Example:
6460
6461 acl local-external dstdomain external.foo.net
6462 acl local-servers dstdomain .foo.net
6463 always_direct deny local-external
6464 always_direct allow local-servers
6465
6466 NOTE: If your goal is to make the client forward the request
6467 directly to the origin server bypassing Squid then this needs
6468 to be done in the client configuration. Squid configuration
6469 can only tell Squid how Squid should fetch the object.
6470
6471 NOTE: This directive is not related to caching. The replies
6472 is cached as usual even if you use always_direct. To not cache
6473 the replies see the 'cache' directive.
6474
6475 This clause supports both fast and slow acl types.
6476 See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
6477 DOC_END
6478
6479 NAME: never_direct
6480 TYPE: acl_access
6481 LOC: Config.accessList.NeverDirect
6482 DEFAULT: none
6483 DOC_START
6484 Usage: never_direct allow|deny [!]aclname ...
6485
6486 never_direct is the opposite of always_direct. Please read
6487 the description for always_direct if you have not already.
6488
6489 With 'never_direct' you can use ACL elements to specify
6490 requests which should NEVER be forwarded directly to origin
6491 servers. For example, to force the use of a proxy for all
6492 requests, except those in your local domain use something like:
6493
6494 acl local-servers dstdomain .foo.net
6495 never_direct deny local-servers
6496 never_direct allow all
6497
6498 or if Squid is inside a firewall and there are local intranet
6499 servers inside the firewall use something like:
6500
6501 acl local-intranet dstdomain .foo.net
6502 acl local-external dstdomain external.foo.net
6503 always_direct deny local-external
6504 always_direct allow local-intranet
6505 never_direct allow all
6506
6507 This clause supports both fast and slow acl types.
6508 See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
6509 DOC_END
6510
6511 COMMENT_START
6512 ADVANCED NETWORKING OPTIONS
6513 -----------------------------------------------------------------------------
6514 COMMENT_END
6515
6516 NAME: incoming_icp_average
6517 TYPE: int
6518 DEFAULT: 6
6519 LOC: Config.comm_incoming.icp_average
6520 DOC_NONE
6521
6522 NAME: incoming_http_average
6523 TYPE: int
6524 DEFAULT: 4
6525 LOC: Config.comm_incoming.http_average
6526 DOC_NONE
6527
6528 NAME: incoming_dns_average
6529 TYPE: int
6530 DEFAULT: 4
6531 LOC: Config.comm_incoming.dns_average
6532 DOC_NONE
6533
6534 NAME: min_icp_poll_cnt
6535 TYPE: int
6536 DEFAULT: 8
6537 LOC: Config.comm_incoming.icp_min_poll
6538 DOC_NONE
6539
6540 NAME: min_dns_poll_cnt
6541 TYPE: int
6542 DEFAULT: 8
6543 LOC: Config.comm_incoming.dns_min_poll
6544 DOC_NONE
6545
6546 NAME: min_http_poll_cnt
6547 TYPE: int
6548 DEFAULT: 8
6549 LOC: Config.comm_incoming.http_min_poll
6550 DOC_START
6551 Heavy voodoo here. I can't even believe you are reading this.
6552 Are you crazy? Don't even think about adjusting these unless
6553 you understand the algorithms in comm_select.c first!
6554 DOC_END
6555
6556 NAME: accept_filter
6557 TYPE: string
6558 DEFAULT: none
6559 LOC: Config.accept_filter
6560 DOC_START
6561 FreeBSD:
6562
6563 The name of an accept(2) filter to install on Squid's
6564 listen socket(s). This feature is perhaps specific to
6565 FreeBSD and requires support in the kernel.
6566
6567 The 'httpready' filter delays delivering new connections
6568 to Squid until a full HTTP request has been received.
6569 See the accf_http(9) man page for details.
6570
6571 The 'dataready' filter delays delivering new connections
6572 to Squid until there is some data to process.
6573 See the accf_dataready(9) man page for details.
6574
6575 Linux:
6576
6577 The 'data' filter delays delivering of new connections
6578 to Squid until there is some data to process by TCP_ACCEPT_DEFER.
6579 You may optionally specify a number of seconds to wait by
6580 'data=N' where N is the number of seconds. Defaults to 30
6581 if not specified. See the tcp(7) man page for details.
6582 EXAMPLE:
6583 # FreeBSD
6584 accept_filter httpready
6585 # Linux
6586 accept_filter data
6587 DOC_END
6588
6589 NAME: client_ip_max_connections
6590 TYPE: int
6591 LOC: Config.client_ip_max_connections
6592 DEFAULT: -1
6593 DOC_START
6594 Set an absolute limit on the number of connections a single
6595 client IP can use. Any more than this and Squid will begin to drop
6596 new connections from the client until it closes some links.
6597
6598 Note that this is a global limit. It affects all HTTP, HTCP, Gopher and FTP
6599 connections from the client. For finer control use the ACL access controls.
6600
6601 Requires client_db to be enabled (the default).
6602
6603 WARNING: This may noticably slow down traffic received via external proxies
6604 or NAT devices and cause them to rebound error messages back to their clients.
6605 DOC_END
6606
6607 NAME: tcp_recv_bufsize
6608 COMMENT: (bytes)
6609 TYPE: b_size_t
6610 DEFAULT: 0 bytes
6611 LOC: Config.tcpRcvBufsz
6612 DOC_START
6613 Size of receive buffer to set for TCP sockets. Probably just
6614 as easy to change your kernel's default. Set to zero to use
6615 the default buffer size.
6616 DOC_END
6617
6618 COMMENT_START
6619 ICAP OPTIONS
6620 -----------------------------------------------------------------------------
6621 COMMENT_END
6622
6623 NAME: icap_enable
6624 TYPE: onoff
6625 IFDEF: ICAP_CLIENT
6626 COMMENT: on|off
6627 LOC: Adaptation::Icap::TheConfig.onoff
6628 DEFAULT: off
6629 DOC_START
6630 If you want to enable the ICAP module support, set this to on.
6631 DOC_END
6632
6633 NAME: icap_connect_timeout
6634 TYPE: time_t
6635 DEFAULT: none
6636 LOC: Adaptation::Icap::TheConfig.connect_timeout_raw
6637 IFDEF: ICAP_CLIENT
6638 DOC_START
6639 This parameter specifies how long to wait for the TCP connect to
6640 the requested ICAP server to complete before giving up and either
6641 terminating the HTTP transaction or bypassing the failure.
6642
6643 The default for optional services is peer_connect_timeout.
6644 The default for essential services is connect_timeout.
6645 If this option is explicitly set, its value applies to all services.
6646 DOC_END
6647
6648 NAME: icap_io_timeout
6649 COMMENT: time-units
6650 TYPE: time_t
6651 DEFAULT: none
6652 LOC: Adaptation::Icap::TheConfig.io_timeout_raw
6653 IFDEF: ICAP_CLIENT
6654 DOC_START
6655 This parameter specifies how long to wait for an I/O activity on
6656 an established, active ICAP connection before giving up and
6657 either terminating the HTTP transaction or bypassing the
6658 failure.
6659
6660 The default is read_timeout.
6661 DOC_END
6662
6663 NAME: icap_service_failure_limit
6664 COMMENT: limit [in memory-depth time-units]
6665 TYPE: icap_service_failure_limit
6666 IFDEF: ICAP_CLIENT
6667 LOC: Adaptation::Icap::TheConfig
6668 DEFAULT: 10
6669 DOC_START
6670 The limit specifies the number of failures that Squid tolerates
6671 when establishing a new TCP connection with an ICAP service. If
6672 the number of failures exceeds the limit, the ICAP service is
6673 not used for new ICAP requests until it is time to refresh its
6674 OPTIONS.
6675
6676 A negative value disables the limit. Without the limit, an ICAP
6677 service will not be considered down due to connectivity failures
6678 between ICAP OPTIONS requests.
6679
6680 Squid forgets ICAP service failures older than the specified
6681 value of memory-depth. The memory fading algorithm
6682 is approximate because Squid does not remember individual
6683 errors but groups them instead, splitting the option
6684 value into ten time slots of equal length.
6685
6686 When memory-depth is 0 and by default this option has no
6687 effect on service failure expiration.
6688
6689 Squid always forgets failures when updating service settings
6690 using an ICAP OPTIONS transaction, regardless of this option
6691 setting.
6692
6693 For example,
6694 # suspend service usage after 10 failures in 5 seconds:
6695 icap_service_failure_limit 10 in 5 seconds
6696 DOC_END
6697
6698 NAME: icap_service_revival_delay
6699 TYPE: int
6700 IFDEF: ICAP_CLIENT
6701 LOC: Adaptation::Icap::TheConfig.service_revival_delay
6702 DEFAULT: 180
6703 DOC_START
6704 The delay specifies the number of seconds to wait after an ICAP
6705 OPTIONS request failure before requesting the options again. The
6706 failed ICAP service is considered "down" until fresh OPTIONS are
6707 fetched.
6708
6709 The actual delay cannot be smaller than the hardcoded minimum
6710 delay of 30 seconds.
6711 DOC_END
6712
6713 NAME: icap_preview_enable
6714 TYPE: onoff
6715 IFDEF: ICAP_CLIENT
6716 COMMENT: on|off
6717 LOC: Adaptation::Icap::TheConfig.preview_enable
6718 DEFAULT: on
6719 DOC_START
6720 The ICAP Preview feature allows the ICAP server to handle the
6721 HTTP message by looking only at the beginning of the message body
6722 or even without receiving the body at all. In some environments,
6723 previews greatly speedup ICAP processing.
6724
6725 During an ICAP OPTIONS transaction, the server may tell Squid what
6726 HTTP messages should be previewed and how big the preview should be.
6727 Squid will not use Preview if the server did not request one.
6728
6729 To disable ICAP Preview for all ICAP services, regardless of
6730 individual ICAP server OPTIONS responses, set this option to "off".
6731 Example:
6732 icap_preview_enable off
6733 DOC_END
6734
6735 NAME: icap_preview_size
6736 TYPE: int
6737 IFDEF: ICAP_CLIENT
6738 LOC: Adaptation::Icap::TheConfig.preview_size
6739 DEFAULT: -1
6740 DOC_START
6741 The default size of preview data to be sent to the ICAP server.
6742 -1 means no preview. This value might be overwritten on a per server
6743 basis by OPTIONS requests.
6744 DOC_END
6745
6746 NAME: icap_206_enable
6747 TYPE: onoff
6748 IFDEF: ICAP_CLIENT
6749 COMMENT: on|off
6750 LOC: Adaptation::Icap::TheConfig.allow206_enable
6751 DEFAULT: on
6752 DOC_START
6753 206 (Partial Content) responses is an ICAP extension that allows the
6754 ICAP agents to optionally combine adapted and original HTTP message
6755 content. The decision to combine is postponed until the end of the
6756 ICAP response. Squid supports Partial Content extension by default.
6757
6758 Activation of the Partial Content extension is negotiated with each
6759 ICAP service during OPTIONS exchange. Most ICAP servers should handle
6760 negotation correctly even if they do not support the extension, but
6761 some might fail. To disable Partial Content support for all ICAP
6762 services and to avoid any negotiation, set this option to "off".
6763
6764 Example:
6765 icap_206_enable off
6766 DOC_END
6767
6768 NAME: icap_default_options_ttl
6769 TYPE: int
6770 IFDEF: ICAP_CLIENT
6771 LOC: Adaptation::Icap::TheConfig.default_options_ttl
6772 DEFAULT: 60
6773 DOC_START
6774 The default TTL value for ICAP OPTIONS responses that don't have
6775 an Options-TTL header.
6776 DOC_END
6777
6778 NAME: icap_persistent_connections
6779 TYPE: onoff
6780 IFDEF: ICAP_CLIENT
6781 COMMENT: on|off
6782 LOC: Adaptation::Icap::TheConfig.reuse_connections
6783 DEFAULT: on
6784 DOC_START
6785 Whether or not Squid should use persistent connections to
6786 an ICAP server.
6787 DOC_END
6788
6789 NAME: adaptation_send_client_ip icap_send_client_ip
6790 TYPE: onoff
6791 IFDEF: USE_ADAPTATION
6792 COMMENT: on|off
6793 LOC: Adaptation::Config::send_client_ip
6794 DEFAULT: off
6795 DOC_START
6796 If enabled, Squid shares HTTP client IP information with adaptation
6797 services. For ICAP, Squid adds the X-Client-IP header to ICAP requests.
6798 For eCAP, Squid sets the libecap::metaClientIp transaction option.
6799
6800 See also: adaptation_uses_indirect_client
6801 DOC_END
6802
6803 NAME: adaptation_send_username icap_send_client_username
6804 TYPE: onoff
6805 IFDEF: USE_ADAPTATION
6806 COMMENT: on|off
6807 LOC: Adaptation::Config::send_username
6808 DEFAULT: off
6809 DOC_START
6810 This sends authenticated HTTP client username (if available) to
6811 the adaptation service.
6812
6813 For ICAP, the username value is encoded based on the
6814 icap_client_username_encode option and is sent using the header
6815 specified by the icap_client_username_header option.
6816 DOC_END
6817
6818 NAME: icap_client_username_header
6819 TYPE: string
6820 IFDEF: ICAP_CLIENT
6821 LOC: Adaptation::Icap::TheConfig.client_username_header
6822 DEFAULT: X-Client-Username
6823 DOC_START
6824 ICAP request header name to use for adaptation_send_username.
6825 DOC_END
6826
6827 NAME: icap_client_username_encode
6828 TYPE: onoff
6829 IFDEF: ICAP_CLIENT
6830 COMMENT: on|off
6831 LOC: Adaptation::Icap::TheConfig.client_username_encode
6832 DEFAULT: off
6833 DOC_START
6834 Whether to base64 encode the authenticated client username.
6835 DOC_END
6836
6837 NAME: icap_service
6838 TYPE: icap_service_type
6839 IFDEF: ICAP_CLIENT
6840 LOC: Adaptation::Icap::TheConfig
6841 DEFAULT: none
6842 DOC_START
6843 Defines a single ICAP service using the following format:
6844
6845 icap_service id vectoring_point uri [option ...]
6846
6847 id: ID
6848 an opaque identifier or name which is used to direct traffic to
6849 this specific service. Must be unique among all adaptation
6850 services in squid.conf.
6851
6852 vectoring_point: reqmod_precache|reqmod_postcache|respmod_precache|respmod_postcache
6853 This specifies at which point of transaction processing the
6854 ICAP service should be activated. *_postcache vectoring points
6855 are not yet supported.
6856
6857 uri: icap://servername:port/servicepath
6858 ICAP server and service location.
6859
6860 ICAP does not allow a single service to handle both REQMOD and RESPMOD
6861 transactions. Squid does not enforce that requirement. You can specify
6862 services with the same service_url and different vectoring_points. You
6863 can even specify multiple identical services as long as their
6864 service_names differ.
6865
6866
6867 Service options are separated by white space. ICAP services support
6868 the following name=value options:
6869
6870 bypass=on|off|1|0
6871 If set to 'on' or '1', the ICAP service is treated as
6872 optional. If the service cannot be reached or malfunctions,
6873 Squid will try to ignore any errors and process the message as
6874 if the service was not enabled. No all ICAP errors can be
6875 bypassed. If set to 0, the ICAP service is treated as
6876 essential and all ICAP errors will result in an error page
6877 returned to the HTTP client.
6878
6879 Bypass is off by default: services are treated as essential.
6880
6881 routing=on|off|1|0
6882 If set to 'on' or '1', the ICAP service is allowed to
6883 dynamically change the current message adaptation plan by
6884 returning a chain of services to be used next. The services
6885 are specified using the X-Next-Services ICAP response header
6886 value, formatted as a comma-separated list of service names.
6887 Each named service should be configured in squid.conf. Other
6888 services are ignored. An empty X-Next-Services value results
6889 in an empty plan which ends the current adaptation.
6890
6891 Dynamic adaptation plan may cross or cover multiple supported
6892 vectoring points in their natural processing order.
6893
6894 Routing is not allowed by default: the ICAP X-Next-Services
6895 response header is ignored.
6896
6897 ipv6=on|off
6898 Only has effect on split-stack systems. The default on those systems
6899 is to use IPv4-only connections. When set to 'on' this option will
6900 make Squid use IPv6-only connections to contact this ICAP service.
6901
6902 on-overload=block|bypass|wait|force
6903 If the service Max-Connections limit has been reached, do
6904 one of the following for each new ICAP transaction:
6905 * block: send an HTTP error response to the client
6906 * bypass: ignore the "over-connected" ICAP service
6907 * wait: wait (in a FIFO queue) for an ICAP connection slot
6908 * force: proceed, ignoring the Max-Connections limit
6909
6910 In SMP mode with N workers, each worker assumes the service
6911 connection limit is Max-Connections/N, even though not all
6912 workers may use a given service.
6913
6914 The default value is "bypass" if service is bypassable,
6915 otherwise it is set to "wait".
6916
6917
6918 max-conn=number
6919 Use the given number as the Max-Connections limit, regardless
6920 of the Max-Connections value given by the service, if any.
6921
6922 Older icap_service format without optional named parameters is
6923 deprecated but supported for backward compatibility.
6924
6925 Example:
6926 icap_service svcBlocker reqmod_precache icap://icap1.mydomain.net:1344/reqmod bypass=0
6927 icap_service svcLogger reqmod_precache icap://icap2.mydomain.net:1344/respmod routing=on
6928 DOC_END
6929
6930 NAME: icap_class
6931 TYPE: icap_class_type
6932 IFDEF: ICAP_CLIENT
6933 LOC: none
6934 DEFAULT: none
6935 DOC_START
6936 This deprecated option was documented to define an ICAP service
6937 chain, even though it actually defined a set of similar, redundant
6938 services, and the chains were not supported.
6939
6940 To define a set of redundant services, please use the
6941 adaptation_service_set directive. For service chains, use
6942 adaptation_service_chain.
6943 DOC_END
6944
6945 NAME: icap_access
6946 TYPE: icap_access_type
6947 IFDEF: ICAP_CLIENT
6948 LOC: none
6949 DEFAULT: none
6950 DOC_START
6951 This option is deprecated. Please use adaptation_access, which
6952 has the same ICAP functionality, but comes with better
6953 documentation, and eCAP support.
6954 DOC_END
6955
6956 COMMENT_START
6957 eCAP OPTIONS
6958 -----------------------------------------------------------------------------
6959 COMMENT_END
6960
6961 NAME: ecap_enable
6962 TYPE: onoff
6963 IFDEF: USE_ECAP
6964 COMMENT: on|off
6965 LOC: Adaptation::Ecap::TheConfig.onoff
6966 DEFAULT: off
6967 DOC_START
6968 Controls whether eCAP support is enabled.
6969 DOC_END
6970
6971 NAME: ecap_service
6972 TYPE: ecap_service_type
6973 IFDEF: USE_ECAP
6974 LOC: Adaptation::Ecap::TheConfig
6975 DEFAULT: none
6976 DOC_START
6977 Defines a single eCAP service
6978
6979 ecap_service id vectoring_point uri [option ...]
6980
6981 id: ID
6982 an opaque identifier or name which is used to direct traffic to
6983 this specific service. Must be unique among all adaptation
6984 services in squid.conf.
6985
6986 vectoring_point: reqmod_precache|reqmod_postcache|respmod_precache|respmod_postcache
6987 This specifies at which point of transaction processing the
6988 eCAP service should be activated. *_postcache vectoring points
6989 are not yet supported.
6990
6991 uri: ecap://vendor/service_name?custom&cgi=style&parameters=optional
6992 Squid uses the eCAP service URI to match this configuration
6993 line with one of the dynamically loaded services. Each loaded
6994 eCAP service must have a unique URI. Obtain the right URI from
6995 the service provider.
6996
6997
6998 Service options are separated by white space. eCAP services support
6999 the following name=value options:
7000
7001 bypass=on|off|1|0
7002 If set to 'on' or '1', the eCAP service is treated as optional.
7003 If the service cannot be reached or malfunctions, Squid will try
7004 to ignore any errors and process the message as if the service
7005 was not enabled. No all eCAP errors can be bypassed.
7006 If set to 'off' or '0', the eCAP service is treated as essential
7007 and all eCAP errors will result in an error page returned to the
7008 HTTP client.
7009
7010 Bypass is off by default: services are treated as essential.
7011
7012 routing=on|off|1|0
7013 If set to 'on' or '1', the eCAP service is allowed to
7014 dynamically change the current message adaptation plan by
7015 returning a chain of services to be used next.
7016
7017 Dynamic adaptation plan may cross or cover multiple supported
7018 vectoring points in their natural processing order.
7019
7020 Routing is not allowed by default.
7021
7022 Older ecap_service format without optional named parameters is
7023 deprecated but supported for backward compatibility.
7024
7025
7026 Example:
7027 ecap_service s1 reqmod_precache ecap://filters.R.us/leakDetector?on_error=block bypass=off
7028 ecap_service s2 respmod_precache ecap://filters.R.us/virusFilter config=/etc/vf.cfg bypass=on
7029 DOC_END
7030
7031 NAME: loadable_modules
7032 TYPE: wordlist
7033 IFDEF: USE_LOADABLE_MODULES
7034 LOC: Config.loadable_module_names
7035 DEFAULT: none
7036 DOC_START
7037 Instructs Squid to load the specified dynamic module(s) or activate
7038 preloaded module(s).
7039 Example:
7040 loadable_modules @DEFAULT_PREFIX@/lib/MinimalAdapter.so
7041 DOC_END
7042
7043 COMMENT_START
7044 MESSAGE ADAPTATION OPTIONS
7045 -----------------------------------------------------------------------------
7046 COMMENT_END
7047
7048 NAME: adaptation_service_set
7049 TYPE: adaptation_service_set_type
7050 IFDEF: USE_ADAPTATION
7051 LOC: none
7052 DEFAULT: none
7053 DOC_START
7054
7055 Configures an ordered set of similar, redundant services. This is
7056 useful when hot standby or backup adaptation servers are available.
7057
7058 adaptation_service_set set_name service_name1 service_name2 ...
7059
7060 The named services are used in the set declaration order. The first
7061 applicable adaptation service from the set is used first. The next
7062 applicable service is tried if and only if the transaction with the
7063 previous service fails and the message waiting to be adapted is still
7064 intact.
7065
7066 When adaptation starts, broken services are ignored as if they were
7067 not a part of the set. A broken service is a down optional service.
7068
7069 The services in a set must be attached to the same vectoring point
7070 (e.g., pre-cache) and use the same adaptation method (e.g., REQMOD).
7071
7072 If all services in a set are optional then adaptation failures are
7073 bypassable. If all services in the set are essential, then a
7074 transaction failure with one service may still be retried using
7075 another service from the set, but when all services fail, the master
7076 transaction fails as well.
7077
7078 A set may contain a mix of optional and essential services, but that
7079 is likely to lead to surprising results because broken services become
7080 ignored (see above), making previously bypassable failures fatal.
7081 Technically, it is the bypassability of the last failed service that
7082 matters.
7083
7084 See also: adaptation_access adaptation_service_chain
7085
7086 Example:
7087 adaptation_service_set svcBlocker urlFilterPrimary urlFilterBackup
7088 adaptation service_set svcLogger loggerLocal loggerRemote
7089 DOC_END
7090
7091 NAME: adaptation_service_chain
7092 TYPE: adaptation_service_chain_type
7093 IFDEF: USE_ADAPTATION
7094 LOC: none
7095 DEFAULT: none
7096 DOC_START
7097
7098 Configures a list of complementary services that will be applied
7099 one-by-one, forming an adaptation chain or pipeline. This is useful
7100 when Squid must perform different adaptations on the same message.
7101
7102 adaptation_service_chain chain_name service_name1 svc_name2 ...
7103
7104 The named services are used in the chain declaration order. The first
7105 applicable adaptation service from the chain is used first. The next
7106 applicable service is applied to the successful adaptation results of
7107 the previous service in the chain.
7108
7109 When adaptation starts, broken services are ignored as if they were
7110 not a part of the chain. A broken service is a down optional service.
7111
7112 Request satisfaction terminates the adaptation chain because Squid
7113 does not currently allow declaration of RESPMOD services at the
7114 "reqmod_precache" vectoring point (see icap_service or ecap_service).
7115
7116 The services in a chain must be attached to the same vectoring point
7117 (e.g., pre-cache) and use the same adaptation method (e.g., REQMOD).
7118
7119 A chain may contain a mix of optional and essential services. If an
7120 essential adaptation fails (or the failure cannot be bypassed for
7121 other reasons), the master transaction fails. Otherwise, the failure
7122 is bypassed as if the failed adaptation service was not in the chain.
7123
7124 See also: adaptation_access adaptation_service_set
7125
7126 Example:
7127 adaptation_service_chain svcRequest requestLogger urlFilter leakDetector
7128 DOC_END
7129
7130 NAME: adaptation_access
7131 TYPE: adaptation_access_type
7132 IFDEF: USE_ADAPTATION
7133 LOC: none
7134 DEFAULT: none
7135 DOC_START
7136 Sends an HTTP transaction to an ICAP or eCAP adaptation service.
7137
7138 adaptation_access service_name allow|deny [!]aclname...
7139 adaptation_access set_name allow|deny [!]aclname...
7140
7141 At each supported vectoring point, the adaptation_access
7142 statements are processed in the order they appear in this
7143 configuration file. Statements pointing to the following services
7144 are ignored (i.e., skipped without checking their ACL):
7145
7146 - services serving different vectoring points
7147 - "broken-but-bypassable" services
7148 - "up" services configured to ignore such transactions
7149 (e.g., based on the ICAP Transfer-Ignore header).
7150
7151 When a set_name is used, all services in the set are checked
7152 using the same rules, to find the first applicable one. See
7153 adaptation_service_set for details.
7154
7155 If an access list is checked and there is a match, the
7156 processing stops: For an "allow" rule, the corresponding
7157 adaptation service is used for the transaction. For a "deny"
7158 rule, no adaptation service is activated.
7159
7160 It is currently not possible to apply more than one adaptation
7161 service at the same vectoring point to the same HTTP transaction.
7162
7163 See also: icap_service and ecap_service
7164
7165 Example:
7166 adaptation_access service_1 allow all
7167 DOC_END
7168
7169 NAME: adaptation_service_iteration_limit
7170 TYPE: int
7171 IFDEF: USE_ADAPTATION
7172 LOC: Adaptation::Config::service_iteration_limit
7173 DEFAULT: 16
7174 DOC_START
7175 Limits the number of iterations allowed when applying adaptation
7176 services to a message. If your longest adaptation set or chain
7177 may have more than 16 services, increase the limit beyond its
7178 default value of 16. If detecting infinite iteration loops sooner
7179 is critical, make the iteration limit match the actual number
7180 of services in your longest adaptation set or chain.
7181
7182 Infinite adaptation loops are most likely with routing services.
7183
7184 See also: icap_service routing=1
7185 DOC_END
7186
7187 NAME: adaptation_masterx_shared_names
7188 TYPE: string
7189 IFDEF: USE_ADAPTATION
7190 LOC: Adaptation::Config::masterx_shared_name
7191 DEFAULT: none
7192 DOC_START
7193 For each master transaction (i.e., the HTTP request and response
7194 sequence, including all related ICAP and eCAP exchanges), Squid
7195 maintains a table of metadata. The table entries are (name, value)
7196 pairs shared among eCAP and ICAP exchanges. The table is destroyed
7197 with the master transaction.
7198
7199 This option specifies the table entry names that Squid must accept
7200 from and forward to the adaptation transactions.
7201
7202 An ICAP REQMOD or RESPMOD transaction may set an entry in the
7203 shared table by returning an ICAP header field with a name
7204 specified in adaptation_masterx_shared_names.
7205
7206 An eCAP REQMOD or RESPMOD transaction may set an entry in the
7207 shared table by implementing the libecap::visitEachOption() API
7208 to provide an option with a name specified in
7209 adaptation_masterx_shared_names.
7210
7211 Squid will store and forward the set entry to subsequent adaptation
7212 transactions within the same master transaction scope.
7213
7214 Only one shared entry name is supported at this time.
7215
7216 Example:
7217 # share authentication information among ICAP services
7218 adaptation_masterx_shared_names X-Subscriber-ID
7219 DOC_END
7220
7221 NAME: adaptation_meta
7222 TYPE: adaptation_meta_type
7223 IFDEF: USE_ADAPTATION
7224 LOC: Adaptation::Config::metaHeaders
7225 DEFAULT: none
7226 DOC_START
7227 This option allows Squid administrator to add custom ICAP request
7228 headers or eCAP options to Squid ICAP requests or eCAP transactions.
7229 Use it to pass custom authentication tokens and other
7230 transaction-state related meta information to an ICAP/eCAP service.
7231
7232 The addition of a meta header is ACL-driven:
7233 adaptation_meta name value [!]aclname ...
7234
7235 Processing for a given header name stops after the first ACL list match.
7236 Thus, it is impossible to add two headers with the same name. If no ACL
7237 lists match for a given header name, no such header is added. For
7238 example:
7239
7240 # do not debug transactions except for those that need debugging
7241 adaptation_meta X-Debug 1 needs_debugging
7242
7243 # log all transactions except for those that must remain secret
7244 adaptation_meta X-Log 1 !keep_secret
7245
7246 # mark transactions from users in the "G 1" group
7247 adaptation_meta X-Authenticated-Groups "G 1" authed_as_G1
7248
7249 The "value" parameter may be a regular squid.conf token or a "double
7250 quoted string". Within the quoted string, use backslash (\) to escape
7251 any character, which is currently only useful for escaping backslashes
7252 and double quotes. For example,
7253 "this string has one backslash (\\) and two \"quotes\""
7254 DOC_END
7255
7256 NAME: icap_retry
7257 TYPE: acl_access
7258 IFDEF: ICAP_CLIENT
7259 LOC: Adaptation::Icap::TheConfig.repeat
7260 DEFAULT_IF_NONE: deny all
7261 DOC_START
7262 This ACL determines which retriable ICAP transactions are
7263 retried. Transactions that received a complete ICAP response
7264 and did not have to consume or produce HTTP bodies to receive
7265 that response are usually retriable.
7266
7267 icap_retry allow|deny [!]aclname ...
7268
7269 Squid automatically retries some ICAP I/O timeouts and errors
7270 due to persistent connection race conditions.
7271
7272 See also: icap_retry_limit
7273 DOC_END
7274
7275 NAME: icap_retry_limit
7276 TYPE: int
7277 IFDEF: ICAP_CLIENT
7278 LOC: Adaptation::Icap::TheConfig.repeat_limit
7279 DEFAULT: 0
7280 DOC_START
7281 Limits the number of retries allowed. When set to zero (default),
7282 no retries are allowed.
7283
7284 Communication errors due to persistent connection race
7285 conditions are unavoidable, automatically retried, and do not
7286 count against this limit.
7287
7288 See also: icap_retry
7289 DOC_END
7290
7291
7292 COMMENT_START
7293 DNS OPTIONS
7294 -----------------------------------------------------------------------------
7295 COMMENT_END
7296
7297 NAME: check_hostnames
7298 TYPE: onoff
7299 DEFAULT: off
7300 LOC: Config.onoff.check_hostnames
7301 DOC_START
7302 For security and stability reasons Squid can check
7303 hostnames for Internet standard RFC compliance. If you want
7304 Squid to perform these checks turn this directive on.
7305 DOC_END
7306
7307 NAME: allow_underscore
7308 TYPE: onoff
7309 DEFAULT: on
7310 LOC: Config.onoff.allow_underscore
7311 DOC_START
7312 Underscore characters is not strictly allowed in Internet hostnames
7313 but nevertheless used by many sites. Set this to off if you want
7314 Squid to be strict about the standard.
7315 This check is performed only when check_hostnames is set to on.
7316 DOC_END
7317
7318 NAME: cache_dns_program
7319 TYPE: string
7320 IFDEF: USE_DNSHELPER
7321 DEFAULT: @DEFAULT_DNSSERVER@
7322 LOC: Config.Program.dnsserver
7323 DOC_START
7324 Specify the location of the executable for dnslookup process.
7325 DOC_END
7326
7327 NAME: dns_children
7328 TYPE: HelperChildConfig
7329 IFDEF: USE_DNSHELPER
7330 DEFAULT: 32 startup=1 idle=1
7331 LOC: Config.dnsChildren
7332 DOC_START
7333 The maximum number of processes spawn to service DNS name lookups.
7334 If you limit it too few Squid will have to wait for them to process
7335 a backlog of requests, slowing it down. If you allow too many they
7336 will use RAM and other system resources noticably.
7337 The maximum this may be safely set to is 32.
7338
7339 The startup= and idle= options allow some measure of skew in your
7340 tuning.
7341
7342 startup=
7343
7344 Sets a minimum of how many processes are to be spawned when Squid
7345 starts or reconfigures. When set to zero the first request will
7346 cause spawning of the first child process to handle it.
7347
7348 Starting too few will cause an initial slowdown in traffic as Squid
7349 attempts to simultaneously spawn enough processes to cope.
7350
7351 idle=
7352
7353 Sets a minimum of how many processes Squid is to try and keep available
7354 at all times. When traffic begins to rise above what the existing
7355 processes can handle this many more will be spawned up to the maximum
7356 configured. A minimum setting of 1 is required.
7357 DOC_END
7358
7359 NAME: dns_retransmit_interval
7360 TYPE: time_msec
7361 DEFAULT: 5 seconds
7362 LOC: Config.Timeout.idns_retransmit
7363 IFDEF: !USE_DNSHELPER
7364 DOC_START
7365 Initial retransmit interval for DNS queries. The interval is
7366 doubled each time all configured DNS servers have been tried.
7367 DOC_END
7368
7369 NAME: dns_timeout
7370 TYPE: time_msec
7371 DEFAULT: 30 seconds
7372 LOC: Config.Timeout.idns_query
7373 IFDEF: !USE_DNSHELPER
7374 DOC_START
7375 DNS Query timeout. If no response is received to a DNS query
7376 within this time all DNS servers for the queried domain
7377 are assumed to be unavailable.
7378 DOC_END
7379
7380 NAME: dns_packet_max
7381 TYPE: b_ssize_t
7382 DEFAULT: none
7383 LOC: Config.dns.packet_max
7384 IFDEF: !USE_DNSHELPER
7385 DOC_START
7386 Maximum number of bytes packet size to advertise via EDNS.
7387 Set to "none" to disable EDNS large packet support.
7388
7389 For legacy reasons DNS UDP replies will default to 512 bytes which
7390 is too small for many responses. EDNS provides a means for Squid to
7391 negotiate receiving larger responses back immediately without having
7392 to failover with repeat requests. Responses larger than this limit
7393 will retain the old behaviour of failover to TCP DNS.
7394
7395 Squid has no real fixed limit internally, but allowing packet sizes
7396 over 1500 bytes requires network jumbogram support and is usually not
7397 necessary.
7398
7399 WARNING: The RFC also indicates that some older resolvers will reply
7400 with failure of the whole request if the extension is added. Some
7401 resolvers have already been identified which will reply with mangled
7402 EDNS response on occasion. Usually in response to many-KB jumbogram
7403 sizes being advertised by Squid.
7404 Squid will currently treat these both as an unable-to-resolve domain
7405 even if it would be resolvable without EDNS.
7406 DOC_END
7407
7408 NAME: dns_defnames
7409 COMMENT: on|off
7410 TYPE: onoff
7411 DEFAULT: off
7412 LOC: Config.onoff.res_defnames
7413 DOC_START
7414 Normally the RES_DEFNAMES resolver option is disabled
7415 (see res_init(3)). This prevents caches in a hierarchy
7416 from interpreting single-component hostnames locally. To allow
7417 Squid to handle single-component names, enable this option.
7418 DOC_END
7419
7420 NAME: dns_nameservers
7421 TYPE: wordlist
7422 DEFAULT: none
7423 LOC: Config.dns_nameservers
7424 DOC_START
7425 Use this if you want to specify a list of DNS name servers
7426 (IP addresses) to use instead of those given in your
7427 /etc/resolv.conf file.
7428 On Windows platforms, if no value is specified here or in
7429 the /etc/resolv.conf file, the list of DNS name servers are
7430 taken from the Windows registry, both static and dynamic DHCP
7431 configurations are supported.
7432
7433 Example: dns_nameservers 10.0.0.1 192.172.0.4
7434 DOC_END
7435
7436 NAME: hosts_file
7437 TYPE: string
7438 DEFAULT: @DEFAULT_HOSTS@
7439 LOC: Config.etcHostsPath
7440 DOC_START
7441 Location of the host-local IP name-address associations
7442 database. Most Operating Systems have such a file on different
7443 default locations:
7444 - Un*X & Linux: /etc/hosts
7445 - Windows NT/2000: %SystemRoot%\system32\drivers\etc\hosts
7446 (%SystemRoot% value install default is c:\winnt)
7447 - Windows XP/2003: %SystemRoot%\system32\drivers\etc\hosts
7448 (%SystemRoot% value install default is c:\windows)
7449 - Windows 9x/Me: %windir%\hosts
7450 (%windir% value is usually c:\windows)
7451 - Cygwin: /etc/hosts
7452
7453 The file contains newline-separated definitions, in the
7454 form ip_address_in_dotted_form name [name ...] names are
7455 whitespace-separated. Lines beginning with an hash (#)
7456 character are comments.
7457
7458 The file is checked at startup and upon configuration.
7459 If set to 'none', it won't be checked.
7460 If append_domain is used, that domain will be added to
7461 domain-local (i.e. not containing any dot character) host
7462 definitions.
7463 DOC_END
7464
7465 NAME: append_domain
7466 TYPE: string
7467 LOC: Config.appendDomain
7468 DEFAULT: none
7469 DOC_START
7470 Appends local domain name to hostnames without any dots in
7471 them. append_domain must begin with a period.
7472
7473 Be warned there are now Internet names with no dots in
7474 them using only top-domain names, so setting this may
7475 cause some Internet sites to become unavailable.
7476
7477 Example:
7478 append_domain .yourdomain.com
7479 DOC_END
7480
7481 NAME: ignore_unknown_nameservers
7482 TYPE: onoff
7483 LOC: Config.onoff.ignore_unknown_nameservers
7484 DEFAULT: on
7485 IFDEF: !USE_DNSHELPER
7486 DOC_START
7487 By default Squid checks that DNS responses are received
7488 from the same IP addresses they are sent to. If they
7489 don't match, Squid ignores the response and writes a warning
7490 message to cache.log. You can allow responses from unknown
7491 nameservers by setting this option to 'off'.
7492 DOC_END
7493
7494 NAME: dns_v4_first
7495 TYPE: onoff
7496 DEFAULT: off
7497 LOC: Config.dns.v4_first
7498 IFDEF: !USE_DNSHELPER
7499 DOC_START
7500 With the IPv6 Internet being as fast or faster than IPv4 Internet
7501 for most networks Squid prefers to contact websites over IPv6.
7502
7503 This option reverses the order of preference to make Squid contact
7504 dual-stack websites over IPv4 first. Squid will still perform both
7505 IPv6 and IPv4 DNS lookups before connecting.
7506
7507 WARNING:
7508 This option will restrict the situations under which IPv6
7509 connectivity is used (and tested). Hiding network problems
7510 which would otherwise be detected and warned about.
7511 DOC_END
7512
7513 NAME: ipcache_size
7514 COMMENT: (number of entries)
7515 TYPE: int
7516 DEFAULT: 1024
7517 LOC: Config.ipcache.size
7518 DOC_NONE
7519
7520 NAME: ipcache_low
7521 COMMENT: (percent)
7522 TYPE: int
7523 DEFAULT: 90
7524 LOC: Config.ipcache.low
7525 DOC_NONE
7526
7527 NAME: ipcache_high
7528 COMMENT: (percent)
7529 TYPE: int
7530 DEFAULT: 95
7531 LOC: Config.ipcache.high
7532 DOC_START
7533 The size, low-, and high-water marks for the IP cache.
7534 DOC_END
7535
7536 NAME: fqdncache_size
7537 COMMENT: (number of entries)
7538 TYPE: int
7539 DEFAULT: 1024
7540 LOC: Config.fqdncache.size
7541 DOC_START
7542 Maximum number of FQDN cache entries.
7543 DOC_END
7544
7545 COMMENT_START
7546 MISCELLANEOUS
7547 -----------------------------------------------------------------------------
7548 COMMENT_END
7549
7550 NAME: memory_pools
7551 COMMENT: on|off
7552 TYPE: onoff
7553 DEFAULT: on
7554 LOC: Config.onoff.mem_pools
7555 DOC_START
7556 If set, Squid will keep pools of allocated (but unused) memory
7557 available for future use. If memory is a premium on your
7558 system and you believe your malloc library outperforms Squid
7559 routines, disable this.
7560 DOC_END
7561
7562 NAME: memory_pools_limit
7563 COMMENT: (bytes)
7564 TYPE: b_int64_t
7565 DEFAULT: 5 MB
7566 LOC: Config.MemPools.limit
7567 DOC_START
7568 Used only with memory_pools on:
7569 memory_pools_limit 50 MB
7570
7571 If set to a non-zero value, Squid will keep at most the specified
7572 limit of allocated (but unused) memory in memory pools. All free()
7573 requests that exceed this limit will be handled by your malloc
7574 library. Squid does not pre-allocate any memory, just safe-keeps
7575 objects that otherwise would be free()d. Thus, it is safe to set
7576 memory_pools_limit to a reasonably high value even if your
7577 configuration will use less memory.
7578
7579 If set to none, Squid will keep all memory it can. That is, there
7580 will be no limit on the total amount of memory used for safe-keeping.
7581
7582 To disable memory allocation optimization, do not set
7583 memory_pools_limit to 0 or none. Set memory_pools to "off" instead.
7584
7585 An overhead for maintaining memory pools is not taken into account
7586 when the limit is checked. This overhead is close to four bytes per
7587 object kept. However, pools may actually _save_ memory because of
7588 reduced memory thrashing in your malloc library.
7589 DOC_END
7590
7591 NAME: forwarded_for
7592 COMMENT: on|off|transparent|truncate|delete
7593 TYPE: string
7594 DEFAULT: on
7595 LOC: opt_forwarded_for
7596 DOC_START
7597 If set to "on", Squid will append your client's IP address
7598 in the HTTP requests it forwards. By default it looks like:
7599
7600 X-Forwarded-For: 192.1.2.3
7601
7602 If set to "off", it will appear as
7603
7604 X-Forwarded-For: unknown
7605
7606 If set to "transparent", Squid will not alter the
7607 X-Forwarded-For header in any way.
7608
7609 If set to "delete", Squid will delete the entire
7610 X-Forwarded-For header.
7611
7612 If set to "truncate", Squid will remove all existing
7613 X-Forwarded-For entries, and place the client IP as the sole entry.
7614 DOC_END
7615
7616 NAME: cachemgr_passwd
7617 TYPE: cachemgrpasswd
7618 DEFAULT: none
7619 LOC: Config.passwd_list
7620 DOC_START
7621 Specify passwords for cachemgr operations.
7622
7623 Usage: cachemgr_passwd password action action ...
7624
7625 Some valid actions are (see cache manager menu for a full list):
7626 5min
7627 60min
7628 asndb
7629 authenticator
7630 cbdata
7631 client_list
7632 comm_incoming
7633 config *
7634 counters
7635 delay
7636 digest_stats
7637 dns
7638 events
7639 filedescriptors
7640 fqdncache
7641 histograms
7642 http_headers
7643 info
7644 io
7645 ipcache
7646 mem
7647 menu
7648 netdb
7649 non_peers
7650 objects
7651 offline_toggle *
7652 pconn
7653 peer_select
7654 reconfigure *
7655 redirector
7656 refresh
7657 server_list
7658 shutdown *
7659 store_digest
7660 storedir
7661 utilization
7662 via_headers
7663 vm_objects
7664
7665 * Indicates actions which will not be performed without a
7666 valid password, others can be performed if not listed here.
7667
7668 To disable an action, set the password to "disable".
7669 To allow performing an action without a password, set the
7670 password to "none".
7671
7672 Use the keyword "all" to set the same password for all actions.
7673
7674 Example:
7675 cachemgr_passwd secret shutdown
7676 cachemgr_passwd lesssssssecret info stats/objects
7677 cachemgr_passwd disable all
7678 DOC_END
7679
7680 NAME: client_db
7681 COMMENT: on|off
7682 TYPE: onoff
7683 DEFAULT: on
7684 LOC: Config.onoff.client_db
7685 DOC_START
7686 If you want to disable collecting per-client statistics,
7687 turn off client_db here.
7688 DOC_END
7689
7690 NAME: refresh_all_ims
7691 COMMENT: on|off
7692 TYPE: onoff
7693 DEFAULT: off
7694 LOC: Config.onoff.refresh_all_ims
7695 DOC_START
7696 When you enable this option, squid will always check
7697 the origin server for an update when a client sends an
7698 If-Modified-Since request. Many browsers use IMS
7699 requests when the user requests a reload, and this
7700 ensures those clients receive the latest version.
7701
7702 By default (off), squid may return a Not Modified response
7703 based on the age of the cached version.
7704 DOC_END
7705
7706 NAME: reload_into_ims
7707 IFDEF: USE_HTTP_VIOLATIONS
7708 COMMENT: on|off
7709 TYPE: onoff
7710 DEFAULT: off
7711 LOC: Config.onoff.reload_into_ims
7712 DOC_START
7713 When you enable this option, client no-cache or ``reload''
7714 requests will be changed to If-Modified-Since requests.
7715 Doing this VIOLATES the HTTP standard. Enabling this
7716 feature could make you liable for problems which it
7717 causes.
7718
7719 see also refresh_pattern for a more selective approach.
7720 DOC_END
7721
7722 NAME: connect_retries
7723 TYPE: int
7724 LOC: Config.connect_retries
7725 DEFAULT: 0
7726 DOC_START
7727 This sets the maximum number of connection attempts made for each
7728 TCP connection. The connect_retries attempts must all still
7729 complete within the connection timeout period.
7730
7731 The default is not to re-try if the first connection attempt fails.
7732 The (not recommended) maximum is 10 tries.
7733
7734 A warning message will be generated if it is set to a too-high
7735 value and the configured value will be over-ridden.
7736
7737 Note: These re-tries are in addition to forward_max_tries
7738 which limit how many different addresses may be tried to find
7739 a useful server.
7740 DOC_END
7741
7742 NAME: retry_on_error
7743 TYPE: onoff
7744 LOC: Config.retry.onerror
7745 DEFAULT: off
7746 DOC_START
7747 If set to ON Squid will automatically retry requests when
7748 receiving an error response with status 403 (Forbidden),
7749 500 (Internal Error), 501 or 503 (Service not available).
7750 Status 502 and 504 (Gateway errors) are always retried.
7751
7752 This is mainly useful if you are in a complex cache hierarchy to
7753 work around access control errors.
7754
7755 NOTE: This retry will attempt to find another working destination.
7756 Which is different from the server which just failed.
7757 DOC_END
7758
7759 NAME: as_whois_server
7760 TYPE: string
7761 LOC: Config.as_whois_server
7762 DEFAULT: whois.ra.net
7763 DOC_START
7764 WHOIS server to query for AS numbers. NOTE: AS numbers are
7765 queried only when Squid starts up, not for every request.
7766 DOC_END
7767
7768 NAME: offline_mode
7769 TYPE: onoff
7770 LOC: Config.onoff.offline
7771 DEFAULT: off
7772 DOC_START
7773 Enable this option and Squid will never try to validate cached
7774 objects.
7775 DOC_END
7776
7777 NAME: uri_whitespace
7778 TYPE: uri_whitespace
7779 LOC: Config.uri_whitespace
7780 DEFAULT: strip
7781 DOC_START
7782 What to do with requests that have whitespace characters in the
7783 URI. Options:
7784
7785 strip: The whitespace characters are stripped out of the URL.
7786 This is the behavior recommended by RFC2396.
7787 deny: The request is denied. The user receives an "Invalid
7788 Request" message.
7789 allow: The request is allowed and the URI is not changed. The
7790 whitespace characters remain in the URI. Note the
7791 whitespace is passed to redirector processes if they
7792 are in use.
7793 encode: The request is allowed and the whitespace characters are
7794 encoded according to RFC1738. This could be considered
7795 a violation of the HTTP/1.1
7796 RFC because proxies are not allowed to rewrite URI's.
7797 chop: The request is allowed and the URI is chopped at the
7798 first whitespace. This might also be considered a
7799 violation.
7800 DOC_END
7801
7802 NAME: chroot
7803 TYPE: string
7804 LOC: Config.chroot_dir
7805 DEFAULT: none
7806 DOC_START
7807 Specifies a directory where Squid should do a chroot() while
7808 initializing. This also causes Squid to fully drop root
7809 privileges after initializing. This means, for example, if you
7810 use a HTTP port less than 1024 and try to reconfigure, you may
7811 get an error saying that Squid can not open the port.
7812 DOC_END
7813
7814 NAME: balance_on_multiple_ip
7815 TYPE: onoff
7816 LOC: Config.onoff.balance_on_multiple_ip
7817 DEFAULT: off
7818 DOC_START
7819 Modern IP resolvers in squid sort lookup results by preferred access.
7820 By default squid will use these IP in order and only rotates to
7821 the next listed when the most preffered fails.
7822
7823 Some load balancing servers based on round robin DNS have been
7824 found not to preserve user session state across requests
7825 to different IP addresses.
7826
7827 Enabling this directive Squid rotates IP's per request.
7828 DOC_END
7829
7830 NAME: pipeline_prefetch
7831 TYPE: onoff
7832 LOC: Config.onoff.pipeline_prefetch
7833 DEFAULT: off
7834 DOC_START
7835 To boost the performance of pipelined requests to closer
7836 match that of a non-proxied environment Squid can try to fetch
7837 up to two requests in parallel from a pipeline.
7838
7839 Defaults to off for bandwidth management and access logging
7840 reasons.
7841
7842 WARNING: pipelining breaks NTLM and Negotiate/Kerberos authentication.
7843 DOC_END
7844
7845 NAME: high_response_time_warning
7846 TYPE: int
7847 COMMENT: (msec)
7848 LOC: Config.warnings.high_rptm
7849 DEFAULT: 0
7850 DOC_START
7851 If the one-minute median response time exceeds this value,
7852 Squid prints a WARNING with debug level 0 to get the
7853 administrators attention. The value is in milliseconds.
7854 DOC_END
7855
7856 NAME: high_page_fault_warning
7857 TYPE: int
7858 LOC: Config.warnings.high_pf
7859 DEFAULT: 0
7860 DOC_START
7861 If the one-minute average page fault rate exceeds this
7862 value, Squid prints a WARNING with debug level 0 to get
7863 the administrators attention. The value is in page faults
7864 per second.
7865 DOC_END
7866
7867 NAME: high_memory_warning
7868 TYPE: b_size_t
7869 LOC: Config.warnings.high_memory
7870 DEFAULT: 0 KB
7871 DOC_START
7872 If the memory usage (as determined by mallinfo) exceeds
7873 this amount, Squid prints a WARNING with debug level 0 to get
7874 the administrators attention.
7875 DOC_END
7876
7877 NAME: sleep_after_fork
7878 COMMENT: (microseconds)
7879 TYPE: int
7880 LOC: Config.sleep_after_fork
7881 DEFAULT: 0
7882 DOC_START
7883 When this is set to a non-zero value, the main Squid process
7884 sleeps the specified number of microseconds after a fork()
7885 system call. This sleep may help the situation where your
7886 system reports fork() failures due to lack of (virtual)
7887 memory. Note, however, if you have a lot of child
7888 processes, these sleep delays will add up and your
7889 Squid will not service requests for some amount of time
7890 until all the child processes have been started.
7891 On Windows value less then 1000 (1 milliseconds) are
7892 rounded to 1000.
7893 DOC_END
7894
7895 NAME: windows_ipaddrchangemonitor
7896 IFDEF: _SQUID_MSWIN_
7897 COMMENT: on|off
7898 TYPE: onoff
7899 DEFAULT: on
7900 LOC: Config.onoff.WIN32_IpAddrChangeMonitor
7901 DOC_START
7902 On Windows Squid by default will monitor IP address changes and will
7903 reconfigure itself after any detected event. This is very useful for
7904 proxies connected to internet with dial-up interfaces.
7905 In some cases (a Proxy server acting as VPN gateway is one) it could be
7906 desiderable to disable this behaviour setting this to 'off'.
7907 Note: after changing this, Squid service must be restarted.
7908 DOC_END
7909
7910 NAME: eui_lookup
7911 TYPE: onoff
7912 IFDEF: USE_SQUID_EUI
7913 DEFAULT: on
7914 LOC: Eui::TheConfig.euiLookup
7915 DOC_START
7916 Whether to lookup the EUI or MAC address of a connected client.
7917 DOC_END
7918
7919 NAME: max_filedescriptors max_filedesc
7920 TYPE: int
7921 DEFAULT: 0
7922 LOC: Config.max_filedescriptors
7923 DOC_START
7924 The maximum number of filedescriptors supported.
7925
7926 The default "0" means Squid inherits the current ulimit setting.
7927
7928 Note: Changing this requires a restart of Squid. Also
7929 not all comm loops supports large values.
7930 DOC_END
7931
7932 NAME: workers
7933 TYPE: int
7934 LOC: Config.workers
7935 DEFAULT: 1
7936 DOC_START
7937 Number of main Squid processes or "workers" to fork and maintain.
7938 0: "no daemon" mode, like running "squid -N ..."
7939 1: "no SMP" mode, start one main Squid process daemon (default)
7940 N: start N main Squid process daemons (i.e., SMP mode)
7941
7942 In SMP mode, each worker does nearly all what a single Squid daemon
7943 does (e.g., listen on http_port and forward HTTP requests).
7944 DOC_END
7945
7946 NAME: cpu_affinity_map
7947 TYPE: CpuAffinityMap
7948 LOC: Config.cpuAffinityMap
7949 DEFAULT: none
7950 DOC_START
7951 Usage: cpu_affinity_map process_numbers=P1,P2,... cores=C1,C2,...
7952
7953 Sets 1:1 mapping between Squid processes and CPU cores. For example,
7954
7955 cpu_affinity_map process_numbers=1,2,3,4 cores=1,3,5,7
7956
7957 affects processes 1 through 4 only and places them on the first
7958 four even cores, starting with core #1.
7959
7960 CPU cores are numbered starting from 1. Requires support for
7961 sched_getaffinity(2) and sched_setaffinity(2) system calls.
7962
7963 Multiple cpu_affinity_map options are merged.
7964
7965 See also: workers
7966 DOC_END
7967
7968 EOF