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