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