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