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