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