Fix a comment that described the effect of debug 1024 incorrectly
[privoxy.git] / config
1 #        Sample Configuration File for Privoxy 3.0.27
2 #
3 # $Id: config,v 1.115 2017/06/26 12:17:17 fabiankeil Exp $
4 #
5 # Copyright (C) 2001-2017 Privoxy Developers https://www.privoxy.org/
6 #
7 #####################################################################
8 #                                                                   #
9 #                      Table of Contents                            #
10 #                                                                   #
11 #        I. INTRODUCTION                                            #
12 #       II. FORMAT OF THE CONFIGURATION FILE                        #
13 #                                                                   #
14 #        1. LOCAL SET-UP DOCUMENTATION                              #
15 #        2. CONFIGURATION AND LOG FILE LOCATIONS                    #
16 #        3. DEBUGGING                                               #
17 #        4. ACCESS CONTROL AND SECURITY                             #
18 #        5. FORWARDING                                              #
19 #        6. MISCELLANEOUS                                           #
20 #        7. WINDOWS GUI OPTIONS                                     #
21 #                                                                   #
22 #####################################################################
23 #
24 #
25 #  I. INTRODUCTION
26 #   ===============
27 #
28 #  This file holds Privoxy's main configuration. Privoxy detects
29 #  configuration changes automatically, so you don't have to restart
30 #  it unless you want to load a different configuration file.
31 #
32 #  The configuration will be reloaded with the first request after
33 #  the change was done, this request itself will still use the old
34 #  configuration, though. In other words: it takes two requests
35 #  before you see the result of your changes. Requests that are
36 #  dropped due to ACL don't trigger reloads.
37 #
38 #  When starting Privoxy on Unix systems, give the location of this
39 #  file as last argument. On Windows systems, Privoxy will look for
40 #  this file with the name 'config.txt' in the current working
41 #  directory of the Privoxy process.
42 #
43 #
44 #  II. FORMAT OF THE CONFIGURATION FILE
45 #  ====================================
46 #
47 #  Configuration lines consist of an initial keyword followed by a
48 #  list of values, all separated by whitespace (any number of spaces
49 #  or tabs). For example,
50 #
51 #  actionsfile default.action
52 #
53 #  Indicates that the actionsfile is named 'default.action'.
54 #
55 #  The '#' indicates a comment. Any part of a line following a '#' is
56 #  ignored, except if the '#' is preceded by a '\'.
57 #
58 #  Thus, by placing a # at the start of an existing configuration
59 #  line, you can make it a comment and it will be treated as if it
60 #  weren't there. This is called "commenting out" an option and can
61 #  be useful. Removing the # again is called "uncommenting".
62 #
63 #  Note that commenting out an option and leaving it at its default
64 #  are two completely different things! Most options behave very
65 #  differently when unset. See the "Effect if unset" explanation in
66 #  each option's description for details.
67 #
68 #  Long lines can be continued on the next line by using a `\' as the
69 #  last character.
70 #
71 #
72 #  1. LOCAL SET-UP DOCUMENTATION
73 #  ==============================
74 #
75 #  If you intend to operate Privoxy for more users than just
76 #  yourself, it might be a good idea to let them know how to reach
77 #  you, what you block and why you do that, your policies, etc.
78 #
79 #
80 #  1.1. user-manual
81 #  =================
82 #
83 #  Specifies:
84 #
85 #      Location of the Privoxy User Manual.
86 #
87 #  Type of value:
88 #
89 #      A fully qualified URI
90 #
91 #  Default value:
92 #
93 #      Unset
94 #
95 #  Effect if unset:
96 #
97 #      https://www.privoxy.org/version/user-manual/ will be used,
98 #      where version is the Privoxy version.
99 #
100 #  Notes:
101 #
102 #      The User Manual URI is the single best source of information
103 #      on Privoxy, and is used for help links from some of the
104 #      internal CGI pages. The manual itself is normally packaged
105 #      with the binary distributions, so you probably want to set
106 #      this to a locally installed copy.
107 #
108 #      Examples:
109 #
110 #      The best all purpose solution is simply to put the full local
111 #      PATH to where the User Manual is located:
112 #
113 #        user-manual  /usr/share/doc/privoxy/user-manual
114 #
115 #      The User Manual is then available to anyone with access to
116 #      Privoxy, by following the built-in URL: http://
117 #      config.privoxy.org/user-manual/ (or the shortcut: http://p.p/
118 #      user-manual/).
119 #
120 #      If the documentation is not on the local system, it can be
121 #      accessed from a remote server, as:
122 #
123 #        user-manual  http://example.com/privoxy/user-manual/
124 #
125 #      WARNING!!!
126 #
127 #          If set, this option should be the first option in the
128 #          config file, because it is used while the config file is
129 #          being read.
130 #
131 #user-manual https://www.privoxy.org/user-manual/
132 #
133 #  1.2. trust-info-url
134 #  ====================
135 #
136 #  Specifies:
137 #
138 #      A URL to be displayed in the error page that users will see if
139 #      access to an untrusted page is denied.
140 #
141 #  Type of value:
142 #
143 #      URL
144 #
145 #  Default value:
146 #
147 #      Unset
148 #
149 #  Effect if unset:
150 #
151 #      No links are displayed on the "untrusted" error page.
152 #
153 #  Notes:
154 #
155 #      The value of this option only matters if the experimental
156 #      trust mechanism has been activated. (See trustfile below.)
157 #
158 #      If you use the trust mechanism, it is a good idea to write up
159 #      some on-line documentation about your trust policy and to
160 #      specify the URL(s) here. Use multiple times for multiple URLs.
161 #
162 #      The URL(s) should be added to the trustfile as well, so users
163 #      don't end up locked out from the information on why they were
164 #      locked out in the first place!
165 #
166 #trust-info-url  http://www.example.com/why_we_block.html
167 #trust-info-url  http://www.example.com/what_we_allow.html
168 #
169 #  1.3. admin-address
170 #  ===================
171 #
172 #  Specifies:
173 #
174 #      An email address to reach the Privoxy administrator.
175 #
176 #  Type of value:
177 #
178 #      Email address
179 #
180 #  Default value:
181 #
182 #      Unset
183 #
184 #  Effect if unset:
185 #
186 #      No email address is displayed on error pages and the CGI user
187 #      interface.
188 #
189 #  Notes:
190 #
191 #      If both admin-address and proxy-info-url are unset, the whole
192 #      "Local Privoxy Support" box on all generated pages will not be
193 #      shown.
194 #
195 #admin-address privoxy-admin@example.com
196 #
197 #  1.4. proxy-info-url
198 #  ====================
199 #
200 #  Specifies:
201 #
202 #      A URL to documentation about the local Privoxy setup,
203 #      configuration or policies.
204 #
205 #  Type of value:
206 #
207 #      URL
208 #
209 #  Default value:
210 #
211 #      Unset
212 #
213 #  Effect if unset:
214 #
215 #      No link to local documentation is displayed on error pages and
216 #      the CGI user interface.
217 #
218 #  Notes:
219 #
220 #      If both admin-address and proxy-info-url are unset, the whole
221 #      "Local Privoxy Support" box on all generated pages will not be
222 #      shown.
223 #
224 #      This URL shouldn't be blocked ;-)
225 #
226 #proxy-info-url http://www.example.com/proxy-service.html
227 #
228 #  2. CONFIGURATION AND LOG FILE LOCATIONS
229 #  ========================================
230 #
231 #  Privoxy can (and normally does) use a number of other files for
232 #  additional configuration, help and logging. This section of the
233 #  configuration file tells Privoxy where to find those other files.
234 #
235 #  The user running Privoxy, must have read permission for all
236 #  configuration files, and write permission to any files that would
237 #  be modified, such as log files and actions files.
238 #
239 #
240 #  2.1. confdir
241 #  =============
242 #
243 #  Specifies:
244 #
245 #      The directory where the other configuration files are located.
246 #
247 #  Type of value:
248 #
249 #      Path name
250 #
251 #  Default value:
252 #
253 #      /etc/privoxy (Unix) or Privoxy installation dir (Windows)
254 #
255 #  Effect if unset:
256 #
257 #      Mandatory
258 #
259 #  Notes:
260 #
261 #      No trailing "/", please.
262 #
263 confdir .
264 #
265 #  2.2. templdir
266 #  ==============
267 #
268 #  Specifies:
269 #
270 #      An alternative directory where the templates are loaded from.
271 #
272 #  Type of value:
273 #
274 #      Path name
275 #
276 #  Default value:
277 #
278 #      unset
279 #
280 #  Effect if unset:
281 #
282 #      The templates are assumed to be located in confdir/template.
283 #
284 #  Notes:
285 #
286 #      Privoxy's original templates are usually overwritten with each
287 #      update. Use this option to relocate customized templates that
288 #      should be kept. As template variables might change between
289 #      updates, you shouldn't expect templates to work with Privoxy
290 #      releases other than the one they were part of, though.
291 #
292 #templdir .
293 #
294 #  2.3. temporary-directory
295 #  =========================
296 #
297 #  Specifies:
298 #
299 #      A directory where Privoxy can create temporary files.
300 #
301 #  Type of value:
302 #
303 #      Path name
304 #
305 #  Default value:
306 #
307 #      unset
308 #
309 #  Effect if unset:
310 #
311 #      No temporary files are created, external filters don't work.
312 #
313 #  Notes:
314 #
315 #      To execute external filters, Privoxy has to create temporary
316 #      files. This directive specifies the directory the temporary
317 #      files should be written to.
318 #
319 #      It should be a directory only Privoxy (and trusted users) can
320 #      access.
321 #
322 #temporary-directory .
323 #
324 #  2.4. logdir
325 #  ============
326 #
327 #  Specifies:
328 #
329 #      The directory where all logging takes place (i.e. where the
330 #      logfile is located).
331 #
332 #  Type of value:
333 #
334 #      Path name
335 #
336 #  Default value:
337 #
338 #      /var/log/privoxy (Unix) or Privoxy installation dir (Windows)
339 #
340 #  Effect if unset:
341 #
342 #      Mandatory
343 #
344 #  Notes:
345 #
346 #      No trailing "/", please.
347 #
348 logdir .
349 #
350 #  2.5. actionsfile
351 #  =================
352 #
353 #  Specifies:
354 #
355 #      The actions file(s) to use
356 #
357 #  Type of value:
358 #
359 #      Complete file name, relative to confdir
360 #
361 #  Default values:
362 #
363 #        match-all.action # Actions that are applied to all sites and maybe overruled later on.
364 #
365 #        default.action   # Main actions file
366 #
367 #        user.action      # User customizations
368 #
369 #  Effect if unset:
370 #
371 #      No actions are taken at all. More or less neutral proxying.
372 #
373 #  Notes:
374 #
375 #      Multiple actionsfile lines are permitted, and are in fact
376 #      recommended!
377 #
378 #      The default values are default.action, which is the "main"
379 #      actions file maintained by the developers, and user.action,
380 #      where you can make your personal additions.
381 #
382 #      Actions files contain all the per site and per URL
383 #      configuration for ad blocking, cookie management, privacy
384 #      considerations, etc.
385 #
386 actionsfile match-all.action # Actions that are applied to all sites and maybe overruled later on.
387 actionsfile default.action   # Main actions file
388 actionsfile user.action      # User customizations
389 #
390 #  2.6. filterfile
391 #  ================
392 #
393 #  Specifies:
394 #
395 #      The filter file(s) to use
396 #
397 #  Type of value:
398 #
399 #      File name, relative to confdir
400 #
401 #  Default value:
402 #
403 #      default.filter (Unix) or default.filter.txt (Windows)
404 #
405 #  Effect if unset:
406 #
407 #      No textual content filtering takes place, i.e. all +filter{name}
408 #      actions in the actions files are turned neutral.
409 #
410 #  Notes:
411 #
412 #      Multiple filterfile lines are permitted.
413 #
414 #      The filter files contain content modification rules that use
415 #      regular expressions. These rules permit powerful changes on
416 #      the content of Web pages, and optionally the headers as well,
417 #      e.g., you could try to disable your favorite JavaScript
418 #      annoyances, re-write the actual displayed text, or just have
419 #      some fun playing buzzword bingo with web pages.
420 #
421 #      The +filter{name} actions rely on the relevant filter (name)
422 #      to be defined in a filter file!
423 #
424 #      A pre-defined filter file called default.filter that contains
425 #      a number of useful filters for common problems is included in
426 #      the distribution. See the section on the filter action for a
427 #      list.
428 #
429 #      It is recommended to place any locally adapted filters into a
430 #      separate file, such as user.filter.
431 #
432 filterfile default.filter
433 filterfile user.filter      # User customizations
434 #
435 #  2.7. logfile
436 #  =============
437 #
438 #  Specifies:
439 #
440 #      The log file to use
441 #
442 #  Type of value:
443 #
444 #      File name, relative to logdir
445 #
446 #  Default value:
447 #
448 #      Unset (commented out). When activated: logfile (Unix) or
449 #      privoxy.log (Windows).
450 #
451 #  Effect if unset:
452 #
453 #      No logfile is written.
454 #
455 #  Notes:
456 #
457 #      The logfile is where all logging and error messages are
458 #      written. The level of detail and number of messages are set
459 #      with the debug option (see below). The logfile can be useful
460 #      for tracking down a problem with Privoxy (e.g., it's not
461 #      blocking an ad you think it should block) and it can help you
462 #      to monitor what your browser is doing.
463 #
464 #      Depending on the debug options below, the logfile may be a
465 #      privacy risk if third parties can get access to it. As most
466 #      users will never look at it, Privoxy only logs fatal errors by
467 #      default.
468 #
469 #      For most troubleshooting purposes, you will have to change
470 #      that, please refer to the debugging section for details.
471 #
472 #      Any log files must be writable by whatever user Privoxy is
473 #      being run as (on Unix, default user id is "privoxy").
474 #
475 #      To prevent the logfile from growing indefinitely, it is
476 #      recommended to periodically rotate or shorten it. Many
477 #      operating systems support log rotation out of the box, some
478 #      require additional software to do it. For details, please
479 #      refer to the documentation for your operating system.
480 #
481 logfile logfile
482 #
483 #  2.8. trustfile
484 #  ===============
485 #
486 #  Specifies:
487 #
488 #      The name of the trust file to use
489 #
490 #  Type of value:
491 #
492 #      File name, relative to confdir
493 #
494 #  Default value:
495 #
496 #      Unset (commented out). When activated: trust (Unix) or
497 #      trust.txt (Windows)
498 #
499 #  Effect if unset:
500 #
501 #      The entire trust mechanism is disabled.
502 #
503 #  Notes:
504 #
505 #      The trust mechanism is an experimental feature for building
506 #      white-lists and should be used with care. It is NOT
507 #      recommended for the casual user.
508 #
509 #      If you specify a trust file, Privoxy will only allow access to
510 #      sites that are specified in the trustfile. Sites can be listed
511 #      in one of two ways:
512 #
513 #      Prepending a ~ character limits access to this site only (and
514 #      any sub-paths within this site), e.g. ~www.example.com allows
515 #      access to ~www.example.com/features/news.html, etc.
516 #
517 #      Or, you can designate sites as trusted referrers, by
518 #      prepending the name with a + character. The effect is that
519 #      access to untrusted sites will be granted -- but only if a
520 #      link from this trusted referrer was used to get there. The
521 #      link target will then be added to the "trustfile" so that
522 #      future, direct accesses will be granted. Sites added via this
523 #      mechanism do not become trusted referrers themselves (i.e.
524 #      they are added with a ~ designation). There is a limit of 512
525 #      such entries, after which new entries will not be made.
526 #
527 #      If you use the + operator in the trust file, it may grow
528 #      considerably over time.
529 #
530 #      It is recommended that Privoxy be compiled with the
531 #      --disable-force, --disable-toggle and --disable-editor
532 #      options, if this feature is to be used.
533 #
534 #      Possible applications include limiting Internet access for
535 #      children.
536 #
537 #trustfile trust
538 #
539 #  3. DEBUGGING
540 #  =============
541 #
542 #  These options are mainly useful when tracing a problem. Note that
543 #  you might also want to invoke Privoxy with the --no-daemon command
544 #  line option when debugging.
545 #
546 #
547 #  3.1. debug
548 #  ===========
549 #
550 #  Specifies:
551 #
552 #      Key values that determine what information gets logged.
553 #
554 #  Type of value:
555 #
556 #      Integer values
557 #
558 #  Default value:
559 #
560 #      0 (i.e.: only fatal errors (that cause Privoxy to exit) are
561 #      logged)
562 #
563 #  Effect if unset:
564 #
565 #      Default value is used (see above).
566 #
567 #  Notes:
568 #
569 #      The available debug levels are:
570 #
571 #        debug     1 # Log the destination for each request Privoxy let through. See also debug 1024.
572 #        debug     2 # show each connection status
573 #        debug     4 # show I/O status
574 #        debug     8 # show header parsing
575 #        debug    16 # log all data written to the network
576 #        debug    32 # debug force feature
577 #        debug    64 # debug regular expression filters
578 #        debug   128 # debug redirects
579 #        debug   256 # debug GIF de-animation
580 #        debug   512 # Common Log Format
581 #        debug  1024 # Log the destination for requests Privoxy didn't let through, and the reason why.
582 #        debug  2048 # CGI user interface
583 #        debug  4096 # Startup banner and warnings.
584 #        debug  8192 # Non-fatal errors
585 #        debug 32768 # log all data read from the network
586 #        debug 65536 # Log the applying actions
587 #
588 #      To select multiple debug levels, you can either add them or
589 #      use multiple debug lines.
590 #
591 #      A debug level of 1 is informative because it will show you
592 #      each request as it happens. 1, 1024, 4096 and 8192 are
593 #      recommended so that you will notice when things go wrong. The
594 #      other levels are probably only of interest if you are hunting
595 #      down a specific problem. They can produce a hell of an output
596 #      (especially 16).
597 #
598 #      If you are used to the more verbose settings, simply enable
599 #      the debug lines below again.
600 #
601 #      If you want to use pure CLF (Common Log Format), you should
602 #      set "debug 512" ONLY and not enable anything else.
603 #
604 #      Privoxy has a hard-coded limit for the length of log messages.
605 #      If it's reached, messages are logged truncated and marked with
606 #      "... [too long, truncated]".
607 #
608 #      Please don't file any support requests without trying to
609 #      reproduce the problem with increased debug level first. Once
610 #      you read the log messages, you may even be able to solve the
611 #      problem on your own.
612 #
613 #debug     1 # Log the destination for each request Privoxy let through. See also debug 1024.
614 #debug  1024 # Log the destination for requests Privoxy didn't let through, and the reason why.
615 #debug  4096 # Startup banner and warnings
616 #debug  8192 # Non-fatal errors
617 #
618 #  3.2. single-threaded
619 #  =====================
620 #
621 #  Specifies:
622 #
623 #      Whether to run only one server thread.
624 #
625 #  Type of value:
626 #
627 #      1 or 0
628 #
629 #  Default value:
630 #
631 #      0
632 #
633 #  Effect if unset:
634 #
635 #      Multi-threaded (or, where unavailable: forked) operation, i.e.
636 #      the ability to serve multiple requests simultaneously.
637 #
638 #  Notes:
639 #
640 #      This option is only there for debugging purposes. It will
641 #      drastically reduce performance.
642 #
643 #single-threaded 1
644 #
645 #  3.3. hostname
646 #  ==============
647 #
648 #  Specifies:
649 #
650 #      The hostname shown on the CGI pages.
651 #
652 #  Type of value:
653 #
654 #      Text
655 #
656 #  Default value:
657 #
658 #      Unset
659 #
660 #  Effect if unset:
661 #
662 #      The hostname provided by the operating system is used.
663 #
664 #  Notes:
665 #
666 #      On some misconfigured systems resolving the hostname fails or
667 #      takes too much time and slows Privoxy down. Setting a fixed
668 #      hostname works around the problem.
669 #
670 #      In other circumstances it might be desirable to show a
671 #      hostname other than the one returned by the operating system.
672 #      For example if the system has several different hostnames and
673 #      you don't want to use the first one.
674 #
675 #      Note that Privoxy does not validate the specified hostname
676 #      value.
677 #
678 #hostname hostname.example.org
679 #
680 #  4. ACCESS CONTROL AND SECURITY
681 #  ===============================
682 #
683 #  This section of the config file controls the security-relevant
684 #  aspects of Privoxy's configuration.
685 #
686 #
687 #  4.1. listen-address
688 #  ====================
689 #
690 #  Specifies:
691 #
692 #      The address and TCP port on which Privoxy will listen for
693 #      client requests.
694 #
695 #  Type of value:
696 #
697 #      [IP-Address]:Port
698 #
699 #      [Hostname]:Port
700 #
701 #  Default value:
702 #
703 #      127.0.0.1:8118
704 #
705 #  Effect if unset:
706 #
707 #      Bind to 127.0.0.1 (IPv4 localhost), port 8118. This is
708 #      suitable and recommended for home users who run Privoxy on the
709 #      same machine as their browser.
710 #
711 #  Notes:
712 #
713 #      You will need to configure your browser(s) to this proxy
714 #      address and port.
715 #
716 #      If you already have another service running on port 8118, or
717 #      if you want to serve requests from other machines (e.g. on
718 #      your local network) as well, you will need to override the
719 #      default.
720 #
721 #      You can use this statement multiple times to make Privoxy
722 #      listen on more ports or more IP addresses. Suitable if your
723 #      operating system does not support sharing IPv6 and IPv4
724 #      protocols on the same socket.
725 #
726 #      If a hostname is used instead of an IP address, Privoxy will
727 #      try to resolve it to an IP address and if there are multiple,
728 #      use the first one returned.
729 #
730 #      If the address for the hostname isn't already known on the
731 #      system (for example because it's in /etc/hostname), this may
732 #      result in DNS traffic.
733 #
734 #      If the specified address isn't available on the system, or if
735 #      the hostname can't be resolved, Privoxy will fail to start.
736 #
737 #      IPv6 addresses containing colons have to be quoted by
738 #      brackets. They can only be used if Privoxy has been compiled
739 #      with IPv6 support. If you aren't sure if your version supports
740 #      it, have a look at http://config.privoxy.org/show-status.
741 #
742 #      Some operating systems will prefer IPv6 to IPv4 addresses even
743 #      if the system has no IPv6 connectivity which is usually not
744 #      expected by the user. Some even rely on DNS to resolve
745 #      localhost which mean the "localhost" address used may not
746 #      actually be local.
747 #
748 #      It is therefore recommended to explicitly configure the
749 #      intended IP address instead of relying on the operating
750 #      system, unless there's a strong reason not to.
751 #
752 #      If you leave out the address, Privoxy will bind to all IPv4
753 #      interfaces (addresses) on your machine and may become
754 #      reachable from the Internet and/or the local network. Be aware
755 #      that some GNU/Linux distributions modify that behaviour
756 #      without updating the documentation. Check for non-standard
757 #      patches if your Privoxy version behaves differently.
758 #
759 #      If you configure Privoxy to be reachable from the network,
760 #      consider using access control lists (ACL's, see below), and/or
761 #      a firewall.
762 #
763 #      If you open Privoxy to untrusted users, you will also want to
764 #      make sure that the following actions are disabled:
765 #      enable-edit-actions and enable-remote-toggle
766 #
767 #  Example:
768 #
769 #      Suppose you are running Privoxy on a machine which has the
770 #      address 192.168.0.1 on your local private network
771 #      (192.168.0.0) and has another outside connection with a
772 #      different address. You want it to serve requests from inside
773 #      only:
774 #
775 #        listen-address  192.168.0.1:8118
776 #
777 #      Suppose you are running Privoxy on an IPv6-capable machine and
778 #      you want it to listen on the IPv6 address of the loopback
779 #      device:
780 #
781 #        listen-address [::1]:8118
782 #
783 listen-address  127.0.0.1:8118
784 #
785 #  4.2. toggle
786 #  ============
787 #
788 #  Specifies:
789 #
790 #      Initial state of "toggle" status
791 #
792 #  Type of value:
793 #
794 #      1 or 0
795 #
796 #  Default value:
797 #
798 #      1
799 #
800 #  Effect if unset:
801 #
802 #      Act as if toggled on
803 #
804 #  Notes:
805 #
806 #      If set to 0, Privoxy will start in "toggled off" mode, i.e.
807 #      mostly behave like a normal, content-neutral proxy with both
808 #      ad blocking and content filtering disabled. See
809 #      enable-remote-toggle below.
810 #
811 toggle  1
812 #
813 #  4.3. enable-remote-toggle
814 #  ==========================
815 #
816 #  Specifies:
817 #
818 #      Whether or not the web-based toggle feature may be used
819 #
820 #  Type of value:
821 #
822 #      0 or 1
823 #
824 #  Default value:
825 #
826 #      0
827 #
828 #  Effect if unset:
829 #
830 #      The web-based toggle feature is disabled.
831 #
832 #  Notes:
833 #
834 #      When toggled off, Privoxy mostly acts like a normal,
835 #      content-neutral proxy, i.e. doesn't block ads or filter
836 #      content.
837 #
838 #      Access to the toggle feature can not be controlled separately
839 #      by "ACLs" or HTTP authentication, so that everybody who can
840 #      access Privoxy (see "ACLs" and listen-address above) can
841 #      toggle it for all users. So this option is not recommended for
842 #      multi-user environments with untrusted users.
843 #
844 #      Note that malicious client side code (e.g Java) is also
845 #      capable of using this option.
846 #
847 #      As a lot of Privoxy users don't read documentation, this
848 #      feature is disabled by default.
849 #
850 #      Note that you must have compiled Privoxy with support for this
851 #      feature, otherwise this option has no effect.
852 #
853 enable-remote-toggle  0
854 #
855 #  4.4. enable-remote-http-toggle
856 #  ===============================
857 #
858 #  Specifies:
859 #
860 #      Whether or not Privoxy recognizes special HTTP headers to
861 #      change its behaviour.
862 #
863 #  Type of value:
864 #
865 #      0 or 1
866 #
867 #  Default value:
868 #
869 #      0
870 #
871 #  Effect if unset:
872 #
873 #      Privoxy ignores special HTTP headers.
874 #
875 #  Notes:
876 #
877 #      When toggled on, the client can change Privoxy's behaviour by
878 #      setting special HTTP headers. Currently the only supported
879 #      special header is "X-Filter: No", to disable filtering for the
880 #      ongoing request, even if it is enabled in one of the action
881 #      files.
882 #
883 #      This feature is disabled by default. If you are using Privoxy
884 #      in a environment with trusted clients, you may enable this
885 #      feature at your discretion. Note that malicious client side
886 #      code (e.g Java) is also capable of using this feature.
887 #
888 #      This option will be removed in future releases as it has been
889 #      obsoleted by the more general header taggers.
890 #
891 enable-remote-http-toggle  0
892 #
893 #  4.5. enable-edit-actions
894 #  =========================
895 #
896 #  Specifies:
897 #
898 #      Whether or not the web-based actions file editor may be used
899 #
900 #  Type of value:
901 #
902 #      0 or 1
903 #
904 #  Default value:
905 #
906 #      0
907 #
908 #  Effect if unset:
909 #
910 #      The web-based actions file editor is disabled.
911 #
912 #  Notes:
913 #
914 #      Access to the editor can not be controlled separately by
915 #      "ACLs" or HTTP authentication, so that everybody who can
916 #      access Privoxy (see "ACLs" and listen-address above) can
917 #      modify its configuration for all users.
918 #
919 #      This option is not recommended for environments with untrusted
920 #      users and as a lot of Privoxy users don't read documentation,
921 #      this feature is disabled by default.
922 #
923 #      Note that malicious client side code (e.g Java) is also
924 #      capable of using the actions editor and you shouldn't enable
925 #      this options unless you understand the consequences and are
926 #      sure your browser is configured correctly.
927 #
928 #      Note that you must have compiled Privoxy with support for this
929 #      feature, otherwise this option has no effect.
930 #
931 enable-edit-actions 0
932 #
933 #  4.6. enforce-blocks
934 #  ====================
935 #
936 #  Specifies:
937 #
938 #      Whether the user is allowed to ignore blocks and can "go there
939 #      anyway".
940 #
941 #  Type of value:
942 #
943 #      0 or 1
944 #
945 #  Default value:
946 #
947 #      0
948 #
949 #  Effect if unset:
950 #
951 #      Blocks are not enforced.
952 #
953 #  Notes:
954 #
955 #      Privoxy is mainly used to block and filter requests as a
956 #      service to the user, for example to block ads and other junk
957 #      that clogs the pipes. Privoxy's configuration isn't perfect
958 #      and sometimes innocent pages are blocked. In this situation it
959 #      makes sense to allow the user to enforce the request and have
960 #      Privoxy ignore the block.
961 #
962 #      In the default configuration Privoxy's "Blocked" page contains
963 #      a "go there anyway" link to adds a special string (the force
964 #      prefix) to the request URL. If that link is used, Privoxy will
965 #      detect the force prefix, remove it again and let the request
966 #      pass.
967 #
968 #      Of course Privoxy can also be used to enforce a network
969 #      policy. In that case the user obviously should not be able to
970 #      bypass any blocks, and that's what the "enforce-blocks" option
971 #      is for. If it's enabled, Privoxy hides the "go there anyway"
972 #      link. If the user adds the force prefix by hand, it will not
973 #      be accepted and the circumvention attempt is logged.
974 #
975 #  Examples:
976 #
977 #      enforce-blocks 1
978 #
979 enforce-blocks 0
980 #
981 #  4.7. ACLs: permit-access and deny-access
982 #  =========================================
983 #
984 #  Specifies:
985 #
986 #      Who can access what.
987 #
988 #  Type of value:
989 #
990 #      src_addr[:port][/src_masklen] [dst_addr[:port][/dst_masklen]]
991 #
992 #      Where src_addr and dst_addr are IPv4 addresses in dotted
993 #      decimal notation or valid DNS names, port is a port number,
994 #      and src_masklen and dst_masklen are subnet masks in CIDR
995 #      notation, i.e. integer values from 2 to 30 representing the
996 #      length (in bits) of the network address. The masks and the
997 #      whole destination part are optional.
998 #
999 #      If your system implements RFC 3493, then src_addr and dst_addr
1000 #      can be IPv6 addresses delimeted by brackets, port can be a
1001 #      number or a service name, and src_masklen and dst_masklen can
1002 #      be a number from 0 to 128.
1003 #
1004 #  Default value:
1005 #
1006 #      Unset
1007 #
1008 #      If no port is specified, any port will match. If no
1009 #      src_masklen or src_masklen is given, the complete IP address
1010 #      has to match (i.e. 32 bits for IPv4 and 128 bits for IPv6).
1011 #
1012 #  Effect if unset:
1013 #
1014 #      Don't restrict access further than implied by listen-address
1015 #
1016 #  Notes:
1017 #
1018 #      Access controls are included at the request of ISPs and
1019 #      systems administrators, and are not usually needed by
1020 #      individual users. For a typical home user, it will normally
1021 #      suffice to ensure that Privoxy only listens on the localhost
1022 #      (127.0.0.1) or internal (home) network address by means of the
1023 #      listen-address option.
1024 #
1025 #      Please see the warnings in the FAQ that Privoxy is not
1026 #      intended to be a substitute for a firewall or to encourage
1027 #      anyone to defer addressing basic security weaknesses.
1028 #
1029 #      Multiple ACL lines are OK. If any ACLs are specified, Privoxy
1030 #      only talks to IP addresses that match at least one
1031 #      permit-access line and don't match any subsequent deny-access
1032 #      line. In other words, the last match wins, with the default
1033 #      being deny-access.
1034 #
1035 #      If Privoxy is using a forwarder (see forward below) for a
1036 #      particular destination URL, the dst_addr that is examined is
1037 #      the address of the forwarder and NOT the address of the
1038 #      ultimate target. This is necessary because it may be
1039 #      impossible for the local Privoxy to determine the IP address
1040 #      of the ultimate target (that's often what gateways are used
1041 #      for).
1042 #
1043 #      You should prefer using IP addresses over DNS names, because
1044 #      the address lookups take time. All DNS names must resolve! You
1045 #      can not use domain patterns like "*.org" or partial domain
1046 #      names. If a DNS name resolves to multiple IP addresses, only
1047 #      the first one is used.
1048 #
1049 #      Some systems allow IPv4 clients to connect to IPv6 server
1050 #      sockets. Then the client's IPv4 address will be translated by
1051 #      the system into IPv6 address space with special prefix
1052 #      ::ffff:0:0/96 (so called IPv4 mapped IPv6 address). Privoxy
1053 #      can handle it and maps such ACL addresses automatically.
1054 #
1055 #      Denying access to particular sites by ACL may have undesired
1056 #      side effects if the site in question is hosted on a machine
1057 #      which also hosts other sites (most sites are).
1058 #
1059 #  Examples:
1060 #
1061 #      Explicitly define the default behavior if no ACL and
1062 #      listen-address are set: "localhost" is OK. The absence of a
1063 #      dst_addr implies that all destination addresses are OK:
1064 #
1065 #        permit-access  localhost
1066 #
1067 #      Allow any host on the same class C subnet as www.privoxy.org
1068 #      access to nothing but www.example.com (or other domains hosted
1069 #      on the same system):
1070 #
1071 #        permit-access  www.privoxy.org/24 www.example.com/32
1072 #
1073 #      Allow access from any host on the 26-bit subnet 192.168.45.64
1074 #      to anywhere, with the exception that 192.168.45.73 may not
1075 #      access the IP address behind www.dirty-stuff.example.com:
1076 #
1077 #        permit-access  192.168.45.64/26
1078 #        deny-access    192.168.45.73    www.dirty-stuff.example.com
1079 #
1080 #      Allow access from the IPv4 network 192.0.2.0/24 even if
1081 #      listening on an IPv6 wild card address (not supported on all
1082 #      platforms):
1083 #
1084 #        permit-access  192.0.2.0/24
1085 #
1086 #      This is equivalent to the following line even if listening on
1087 #      an IPv4 address (not supported on all platforms):
1088 #
1089 #        permit-access  [::ffff:192.0.2.0]/120
1090 #
1091 #
1092 #  4.8. buffer-limit
1093 #  ==================
1094 #
1095 #  Specifies:
1096 #
1097 #      Maximum size of the buffer for content filtering.
1098 #
1099 #  Type of value:
1100 #
1101 #      Size in Kbytes
1102 #
1103 #  Default value:
1104 #
1105 #      4096
1106 #
1107 #  Effect if unset:
1108 #
1109 #      Use a 4MB (4096 KB) limit.
1110 #
1111 #  Notes:
1112 #
1113 #      For content filtering, i.e. the +filter and +deanimate-gif
1114 #      actions, it is necessary that Privoxy buffers the entire
1115 #      document body. This can be potentially dangerous, since a
1116 #      server could just keep sending data indefinitely and wait for
1117 #      your RAM to exhaust -- with nasty consequences. Hence this
1118 #      option.
1119 #
1120 #      When a document buffer size reaches the buffer-limit, it is
1121 #      flushed to the client unfiltered and no further attempt to
1122 #      filter the rest of the document is made. Remember that there
1123 #      may be multiple threads running, which might require up to
1124 #      buffer-limit Kbytes each, unless you have enabled
1125 #      "single-threaded" above.
1126 #
1127 buffer-limit 4096
1128 #
1129 #  4.9. enable-proxy-authentication-forwarding
1130 #  ============================================
1131 #
1132 #  Specifies:
1133 #
1134 #      Whether or not proxy authentication through Privoxy should
1135 #      work.
1136 #
1137 #  Type of value:
1138 #
1139 #      0 or 1
1140 #
1141 #  Default value:
1142 #
1143 #      0
1144 #
1145 #  Effect if unset:
1146 #
1147 #      Proxy authentication headers are removed.
1148 #
1149 #  Notes:
1150 #
1151 #      Privoxy itself does not support proxy authentication, but can
1152 #      allow clients to authenticate against Privoxy's parent proxy.
1153 #
1154 #      By default Privoxy (3.0.21 and later) don't do that and remove
1155 #      Proxy-Authorization headers in requests and Proxy-Authenticate
1156 #      headers in responses to make it harder for malicious sites to
1157 #      trick inexperienced users into providing login information.
1158 #
1159 #      If this option is enabled the headers are forwarded.
1160 #
1161 #      Enabling this option is not recommended if there is no parent
1162 #      proxy that requires authentication or if the local network
1163 #      between Privoxy and the parent proxy isn't trustworthy. If
1164 #      proxy authentication is only required for some requests, it is
1165 #      recommended to use a client header filter to remove the
1166 #      authentication headers for requests where they aren't needed.
1167 #
1168 enable-proxy-authentication-forwarding 0
1169 #
1170 #  4.10. trusted-cgi-referer
1171 #  ==========================
1172 #
1173 #  Specifies:
1174 #
1175 #      A trusted website or webpage whose links can be followed to
1176 #      reach sensitive CGI pages
1177 #
1178 #  Type of value:
1179 #
1180 #      URL or URL prefix
1181 #
1182 #  Default value:
1183 #
1184 #      Unset
1185 #
1186 #  Effect if unset:
1187 #
1188 #      No external pages are considered trusted referers.
1189 #
1190 #  Notes:
1191 #
1192 #      Before Privoxy accepts configuration changes through CGI pages
1193 #      like client-tags or the remote toggle, it checks the Referer
1194 #      header to see if the request comes from a trusted source.
1195 #
1196 #      By default only the webinterface domains config.privoxy.org
1197 #      and p.p are considered trustworthy. Requests originating from
1198 #      other domains are rejected to prevent third-parties from
1199 #      modifiying Privoxy's state by e.g. embedding images that
1200 #      result in CGI requests.
1201 #
1202 #      In some environments it may be desirable to embed links to CGI
1203 #      pages on external pages, for example on an Intranet homepage
1204 #      the Privoxy admin controls.
1205 #
1206 #      The "trusted-cgi-referer" option can be used to add that page,
1207 #      or the whole domain, as trusted source so the resulting
1208 #      requests aren't rejected. Requests are accepted if the
1209 #      specified trusted-cgi-refer is the prefix of the Referer.
1210 #
1211 #      +-----------------------------------------------------+
1212 #      |                       Warning                       |
1213 #      |-----------------------------------------------------|
1214 #      |Declaring pages the admin doesn't control trustworthy|
1215 #      |may allow malicious third parties to modify Privoxy's|
1216 #      |internal state against the user's wishes and without |
1217 #      |the user's knowledge.                                |
1218 #      +-----------------------------------------------------+
1219 #
1220 trusted-cgi-referer http://www.example.org/
1221 #
1222 #
1223 #  5. FORWARDING
1224 #  ==============
1225 #
1226 #  This feature allows routing of HTTP requests through a chain of
1227 #  multiple proxies.
1228 #
1229 #  Forwarding can be used to chain Privoxy with a caching proxy to
1230 #  speed up browsing. Using a parent proxy may also be necessary if
1231 #  the machine that Privoxy runs on has no direct Internet access.
1232 #
1233 #  Note that parent proxies can severely decrease your privacy level.
1234 #  For example a parent proxy could add your IP address to the
1235 #  request headers and if it's a caching proxy it may add the "Etag"
1236 #  header to revalidation requests again, even though you configured
1237 #  Privoxy to remove it. It may also ignore Privoxy's header time
1238 #  randomization and use the original values which could be used by
1239 #  the server as cookie replacement to track your steps between
1240 #  visits.
1241 #
1242 #  Also specified here are SOCKS proxies. Privoxy supports the SOCKS
1243 #  4 and SOCKS 4A protocols.
1244 #
1245 #
1246 #  5.1. forward
1247 #  =============
1248 #
1249 #  Specifies:
1250 #
1251 #      To which parent HTTP proxy specific requests should be routed.
1252 #
1253 #  Type of value:
1254 #
1255 #      target_pattern http_parent[:port]
1256 #
1257 #      where target_pattern is a URL pattern that specifies to which
1258 #      requests (i.e. URLs) this forward rule shall apply. Use / to
1259 #      denote "all URLs". http_parent[:port] is the DNS name or IP
1260 #      address of the parent HTTP proxy through which the requests
1261 #      should be forwarded, optionally followed by its listening port
1262 #      (default: 8000). Use a single dot (.) to denote "no
1263 #      forwarding".
1264 #
1265 #  Default value:
1266 #
1267 #      Unset
1268 #
1269 #  Effect if unset:
1270 #
1271 #      Don't use parent HTTP proxies.
1272 #
1273 #  Notes:
1274 #
1275 #      If http_parent is ".", then requests are not forwarded to
1276 #      another HTTP proxy but are made directly to the web servers.
1277 #
1278 #      http_parent can be a numerical IPv6 address (if RFC 3493 is
1279 #      implemented). To prevent clashes with the port delimiter, the
1280 #      whole IP address has to be put into brackets. On the other
1281 #      hand a target_pattern containing an IPv6 address has to be put
1282 #      into angle brackets (normal brackets are reserved for regular
1283 #      expressions already).
1284 #
1285 #      Multiple lines are OK, they are checked in sequence, and the
1286 #      last match wins.
1287 #
1288 #  Examples:
1289 #
1290 #      Everything goes to an example parent proxy, except SSL on port
1291 #      443 (which it doesn't handle):
1292 #
1293 #        forward   /      parent-proxy.example.org:8080
1294 #        forward   :443   .
1295 #
1296 #      Everything goes to our example ISP's caching proxy, except for
1297 #      requests to that ISP's sites:
1298 #
1299 #        forward   /                  caching-proxy.isp.example.net:8000
1300 #        forward   .isp.example.net   .
1301 #
1302 #      Parent proxy specified by an IPv6 address:
1303 #
1304 #        forward   /                   [2001:DB8::1]:8000
1305 #
1306 #      Suppose your parent proxy doesn't support IPv6:
1307 #
1308 #        forward  /                        parent-proxy.example.org:8000
1309 #        forward  ipv6-server.example.org  .
1310 #        forward  <[2-3][0-9a-f][0-9a-f][0-9a-f]:*>   .
1311 #
1312 #
1313 #  5.2. forward-socks4, forward-socks4a, forward-socks5 and forward-socks5t
1314 #  =========================================================================
1315 #
1316 #  Specifies:
1317 #
1318 #      Through which SOCKS proxy (and optionally to which parent HTTP
1319 #      proxy) specific requests should be routed.
1320 #
1321 #  Type of value:
1322 #
1323 #      target_pattern socks_proxy[:port] http_parent[:port]
1324 #
1325 #      where target_pattern is a URL pattern that specifies to which
1326 #      requests (i.e. URLs) this forward rule shall apply. Use / to
1327 #      denote "all URLs". http_parent and socks_proxy are IP
1328 #      addresses in dotted decimal notation or valid DNS names (
1329 #      http_parent may be "." to denote "no HTTP forwarding"), and
1330 #      the optional port parameters are TCP ports, i.e. integer
1331 #      values from 1 to 65535
1332 #
1333 #  Default value:
1334 #
1335 #      Unset
1336 #
1337 #  Effect if unset:
1338 #
1339 #      Don't use SOCKS proxies.
1340 #
1341 #  Notes:
1342 #
1343 #      Multiple lines are OK, they are checked in sequence, and the
1344 #      last match wins.
1345 #
1346 #      The difference between forward-socks4 and forward-socks4a is
1347 #      that in the SOCKS 4A protocol, the DNS resolution of the
1348 #      target hostname happens on the SOCKS server, while in SOCKS 4
1349 #      it happens locally.
1350 #
1351 #      With forward-socks5 the DNS resolution will happen on the
1352 #      remote server as well.
1353 #
1354 #      forward-socks5t works like vanilla forward-socks5 but lets
1355 #      Privoxy additionally use Tor-specific SOCKS extensions.
1356 #      Currently the only supported SOCKS extension is optimistic
1357 #      data which can reduce the latency for the first request made
1358 #      on a newly created connection.
1359 #
1360 #      socks_proxy and http_parent can be a numerical IPv6 address
1361 #      (if RFC 3493 is implemented). To prevent clashes with the port
1362 #      delimiter, the whole IP address has to be put into brackets.
1363 #      On the other hand a target_pattern containing an IPv6 address
1364 #      has to be put into angle brackets (normal brackets are
1365 #      reserved for regular expressions already).
1366 #
1367 #      If http_parent is ".", then requests are not forwarded to
1368 #      another HTTP proxy but are made (HTTP-wise) directly to the
1369 #      web servers, albeit through a SOCKS proxy.
1370 #
1371 #  Examples:
1372 #
1373 #      From the company example.com, direct connections are made to
1374 #      all "internal" domains, but everything outbound goes through
1375 #      their ISP's proxy by way of example.com's corporate SOCKS 4A
1376 #      gateway to the Internet.
1377 #
1378 #        forward-socks4a   /              socks-gw.example.com:1080  www-cache.isp.example.net:8080
1379 #        forward           .example.com   .
1380 #
1381 #      A rule that uses a SOCKS 4 gateway for all destinations but no
1382 #      HTTP parent looks like this:
1383 #
1384 #        forward-socks4   /               socks-gw.example.com:1080  .
1385 #
1386 #      To chain Privoxy and Tor, both running on the same system, you
1387 #      would use something like:
1388 #
1389 #        forward-socks5t   /               127.0.0.1:9050 .
1390 #
1391 #      Note that if you got Tor through one of the bundles, you may
1392 #      have to change the port from 9050 to 9150 (or even another
1393 #      one). For details, please check the documentation on the Tor
1394 #      website.
1395 #
1396 #      The public Tor network can't be used to reach your local
1397 #      network, if you need to access local servers you therefore
1398 #      might want to make some exceptions:
1399 #
1400 #        forward         192.168.*.*/     .
1401 #        forward            10.*.*.*/     .
1402 #        forward           127.*.*.*/     .
1403 #
1404 #      Unencrypted connections to systems in these address ranges
1405 #      will be as (un)secure as the local network is, but the
1406 #      alternative is that you can't reach the local network through
1407 #      Privoxy at all. Of course this may actually be desired and
1408 #      there is no reason to make these exceptions if you aren't sure
1409 #      you need them.
1410 #
1411 #      If you also want to be able to reach servers in your local
1412 #      network by using their names, you will need additional
1413 #      exceptions that look like this:
1414 #
1415 #       forward           localhost/     .
1416 #
1417 #
1418 #  5.3. forwarded-connect-retries
1419 #  ===============================
1420 #
1421 #  Specifies:
1422 #
1423 #      How often Privoxy retries if a forwarded connection request
1424 #      fails.
1425 #
1426 #  Type of value:
1427 #
1428 #      Number of retries.
1429 #
1430 #  Default value:
1431 #
1432 #      0
1433 #
1434 #  Effect if unset:
1435 #
1436 #      Connections forwarded through other proxies are treated like
1437 #      direct connections and no retry attempts are made.
1438 #
1439 #  Notes:
1440 #
1441 #      forwarded-connect-retries is mainly interesting for socks4a
1442 #      connections, where Privoxy can't detect why the connections
1443 #      failed. The connection might have failed because of a DNS
1444 #      timeout in which case a retry makes sense, but it might also
1445 #      have failed because the server doesn't exist or isn't
1446 #      reachable. In this case the retry will just delay the
1447 #      appearance of Privoxy's error message.
1448 #
1449 #      Note that in the context of this option, "forwarded
1450 #      connections" includes all connections that Privoxy forwards
1451 #      through other proxies. This option is not limited to the HTTP
1452 #      CONNECT method.
1453 #
1454 #      Only use this option, if you are getting lots of
1455 #      forwarding-related error messages that go away when you try
1456 #      again manually. Start with a small value and check Privoxy's
1457 #      logfile from time to time, to see how many retries are usually
1458 #      needed.
1459 #
1460 #  Examples:
1461 #
1462 #      forwarded-connect-retries 1
1463 #
1464 forwarded-connect-retries  0
1465 #
1466 #  6. MISCELLANEOUS
1467 #  =================
1468 #
1469 #  6.1. accept-intercepted-requests
1470 #  =================================
1471 #
1472 #  Specifies:
1473 #
1474 #      Whether intercepted requests should be treated as valid.
1475 #
1476 #  Type of value:
1477 #
1478 #      0 or 1
1479 #
1480 #  Default value:
1481 #
1482 #      0
1483 #
1484 #  Effect if unset:
1485 #
1486 #      Only proxy requests are accepted, intercepted requests are
1487 #      treated as invalid.
1488 #
1489 #  Notes:
1490 #
1491 #      If you don't trust your clients and want to force them to use
1492 #      Privoxy, enable this option and configure your packet filter
1493 #      to redirect outgoing HTTP connections into Privoxy.
1494 #
1495 #      Note that intercepting encrypted connections (HTTPS) isn't
1496 #      supported.
1497 #
1498 #      Make sure that Privoxy's own requests aren't redirected as
1499 #      well. Additionally take care that Privoxy can't intentionally
1500 #      connect to itself, otherwise you could run into redirection
1501 #      loops if Privoxy's listening port is reachable by the outside
1502 #      or an attacker has access to the pages you visit.
1503 #
1504 #      If you are running Privoxy as intercepting proxy without being
1505 #      able to intercept all client requests you may want to adjust
1506 #      the CGI templates to make sure they don't reference content
1507 #      from config.privoxy.org.
1508 #
1509 #  Examples:
1510 #
1511 #      accept-intercepted-requests 1
1512 #
1513 accept-intercepted-requests 0
1514 #
1515 #  6.2. allow-cgi-request-crunching
1516 #  =================================
1517 #
1518 #  Specifies:
1519 #
1520 #      Whether requests to Privoxy's CGI pages can be blocked or
1521 #      redirected.
1522 #
1523 #  Type of value:
1524 #
1525 #      0 or 1
1526 #
1527 #  Default value:
1528 #
1529 #      0
1530 #
1531 #  Effect if unset:
1532 #
1533 #      Privoxy ignores block and redirect actions for its CGI pages.
1534 #
1535 #  Notes:
1536 #
1537 #      By default Privoxy ignores block or redirect actions for its
1538 #      CGI pages. Intercepting these requests can be useful in
1539 #      multi-user setups to implement fine-grained access control,
1540 #      but it can also render the complete web interface useless and
1541 #      make debugging problems painful if done without care.
1542 #
1543 #      Don't enable this option unless you're sure that you really
1544 #      need it.
1545 #
1546 #  Examples:
1547 #
1548 #      allow-cgi-request-crunching 1
1549 #
1550 allow-cgi-request-crunching 0
1551 #
1552 #  6.3. split-large-forms
1553 #  =======================
1554 #
1555 #  Specifies:
1556 #
1557 #      Whether the CGI interface should stay compatible with broken
1558 #      HTTP clients.
1559 #
1560 #  Type of value:
1561 #
1562 #      0 or 1
1563 #
1564 #  Default value:
1565 #
1566 #      0
1567 #
1568 #  Effect if unset:
1569 #
1570 #      The CGI form generate long GET URLs.
1571 #
1572 #  Notes:
1573 #
1574 #      Privoxy's CGI forms can lead to rather long URLs. This isn't a
1575 #      problem as far as the HTTP standard is concerned, but it can
1576 #      confuse clients with arbitrary URL length limitations.
1577 #
1578 #      Enabling split-large-forms causes Privoxy to divide big forms
1579 #      into smaller ones to keep the URL length down. It makes
1580 #      editing a lot less convenient and you can no longer submit all
1581 #      changes at once, but at least it works around this browser
1582 #      bug.
1583 #
1584 #      If you don't notice any editing problems, there is no reason
1585 #      to enable this option, but if one of the submit buttons
1586 #      appears to be broken, you should give it a try.
1587 #
1588 #  Examples:
1589 #
1590 #      split-large-forms 1
1591 #
1592 split-large-forms 0
1593 #
1594 #  6.4. keep-alive-timeout
1595 #  ========================
1596 #
1597 #  Specifies:
1598 #
1599 #      Number of seconds after which an open connection will no
1600 #      longer be reused.
1601 #
1602 #  Type of value:
1603 #
1604 #      Time in seconds.
1605 #
1606 #  Default value:
1607 #
1608 #      None
1609 #
1610 #  Effect if unset:
1611 #
1612 #      Connections are not kept alive.
1613 #
1614 #  Notes:
1615 #
1616 #      This option allows clients to keep the connection to Privoxy
1617 #      alive. If the server supports it, Privoxy will keep the
1618 #      connection to the server alive as well. Under certain
1619 #      circumstances this may result in speed-ups.
1620 #
1621 #      By default, Privoxy will close the connection to the server if
1622 #      the client connection gets closed, or if the specified timeout
1623 #      has been reached without a new request coming in. This
1624 #      behaviour can be changed with the connection-sharing option.
1625 #
1626 #      This option has no effect if Privoxy has been compiled without
1627 #      keep-alive support.
1628 #
1629 #      Note that a timeout of five seconds as used in the default
1630 #      configuration file significantly decreases the number of
1631 #      connections that will be reused. The value is used because
1632 #      some browsers limit the number of connections they open to a
1633 #      single host and apply the same limit to proxies. This can
1634 #      result in a single website "grabbing" all the connections the
1635 #      browser allows, which means connections to other websites
1636 #      can't be opened until the connections currently in use time
1637 #      out.
1638 #
1639 #      Several users have reported this as a Privoxy bug, so the
1640 #      default value has been reduced. Consider increasing it to 300
1641 #      seconds or even more if you think your browser can handle it.
1642 #      If your browser appears to be hanging, it probably can't.
1643 #
1644 #  Examples:
1645 #
1646 #      keep-alive-timeout 300
1647 #
1648 keep-alive-timeout 5
1649 #
1650 #  6.5. tolerate-pipelining
1651 #  =========================
1652 #
1653 #  Specifies:
1654 #
1655 #      Whether or not pipelined requests should be served.
1656 #
1657 #  Type of value:
1658 #
1659 #      0 or 1.
1660 #
1661 #  Default value:
1662 #
1663 #      None
1664 #
1665 #  Effect if unset:
1666 #
1667 #      If Privoxy receives more than one request at once, it
1668 #      terminates the client connection after serving the first one.
1669 #
1670 #  Notes:
1671 #
1672 #      Privoxy currently doesn't pipeline outgoing requests, thus
1673 #      allowing pipelining on the client connection is not guaranteed
1674 #      to improve the performance.
1675 #
1676 #      By default Privoxy tries to discourage clients from pipelining
1677 #      by discarding aggressively pipelined requests, which forces
1678 #      the client to resend them through a new connection.
1679 #
1680 #      This option lets Privoxy tolerate pipelining. Whether or not
1681 #      that improves performance mainly depends on the client
1682 #      configuration.
1683 #
1684 #      If you are seeing problems with pages not properly loading,
1685 #      disabling this option could work around the problem.
1686 #
1687 #  Examples:
1688 #
1689 #      tolerate-pipelining 1
1690 #
1691 tolerate-pipelining 1
1692 #
1693 #  6.6. default-server-timeout
1694 #  ============================
1695 #
1696 #  Specifies:
1697 #
1698 #      Assumed server-side keep-alive timeout if not specified by the
1699 #      server.
1700 #
1701 #  Type of value:
1702 #
1703 #      Time in seconds.
1704 #
1705 #  Default value:
1706 #
1707 #      None
1708 #
1709 #  Effect if unset:
1710 #
1711 #      Connections for which the server didn't specify the keep-alive
1712 #      timeout are not reused.
1713 #
1714 #  Notes:
1715 #
1716 #      Enabling this option significantly increases the number of
1717 #      connections that are reused, provided the keep-alive-timeout
1718 #      option is also enabled.
1719 #
1720 #      While it also increases the number of connections problems
1721 #      when Privoxy tries to reuse a connection that already has been
1722 #      closed on the server side, or is closed while Privoxy is
1723 #      trying to reuse it, this should only be a problem if it
1724 #      happens for the first request sent by the client. If it
1725 #      happens for requests on reused client connections, Privoxy
1726 #      will simply close the connection and the client is supposed to
1727 #      retry the request without bothering the user.
1728 #
1729 #      Enabling this option is therefore only recommended if the
1730 #      connection-sharing option is disabled.
1731 #
1732 #      It is an error to specify a value larger than the
1733 #      keep-alive-timeout value.
1734 #
1735 #      This option has no effect if Privoxy has been compiled without
1736 #      keep-alive support.
1737 #
1738 #  Examples:
1739 #
1740 #      default-server-timeout 60
1741 #
1742 #default-server-timeout 60
1743 #
1744 #  6.7. connection-sharing
1745 #  ========================
1746 #
1747 #  Specifies:
1748 #
1749 #      Whether or not outgoing connections that have been kept alive
1750 #      should be shared between different incoming connections.
1751 #
1752 #  Type of value:
1753 #
1754 #      0 or 1
1755 #
1756 #  Default value:
1757 #
1758 #      None
1759 #
1760 #  Effect if unset:
1761 #
1762 #      Connections are not shared.
1763 #
1764 #  Notes:
1765 #
1766 #      This option has no effect if Privoxy has been compiled without
1767 #      keep-alive support, or if it's disabled.
1768 #
1769 #  Notes:
1770 #
1771 #      Note that reusing connections doesn't necessary cause
1772 #      speedups. There are also a few privacy implications you should
1773 #      be aware of.
1774 #
1775 #      If this option is effective, outgoing connections are shared
1776 #      between clients (if there are more than one) and closing the
1777 #      browser that initiated the outgoing connection does no longer
1778 #      affect the connection between Privoxy and the server unless
1779 #      the client's request hasn't been completed yet.
1780 #
1781 #      If the outgoing connection is idle, it will not be closed
1782 #      until either Privoxy's or the server's timeout is reached.
1783 #      While it's open, the server knows that the system running
1784 #      Privoxy is still there.
1785 #
1786 #      If there are more than one client (maybe even belonging to
1787 #      multiple users), they will be able to reuse each others
1788 #      connections. This is potentially dangerous in case of
1789 #      authentication schemes like NTLM where only the connection is
1790 #      authenticated, instead of requiring authentication for each
1791 #      request.
1792 #
1793 #      If there is only a single client, and if said client can keep
1794 #      connections alive on its own, enabling this option has next to
1795 #      no effect. If the client doesn't support connection
1796 #      keep-alive, enabling this option may make sense as it allows
1797 #      Privoxy to keep outgoing connections alive even if the client
1798 #      itself doesn't support it.
1799 #
1800 #      You should also be aware that enabling this option increases
1801 #      the likelihood of getting the "No server or forwarder data"
1802 #      error message, especially if you are using a slow connection
1803 #      to the Internet.
1804 #
1805 #      This option should only be used by experienced users who
1806 #      understand the risks and can weight them against the benefits.
1807 #
1808 #  Examples:
1809 #
1810 #      connection-sharing 1
1811 #
1812 #connection-sharing 1
1813 #
1814 #  6.8. socket-timeout
1815 #  ====================
1816 #
1817 #  Specifies:
1818 #
1819 #      Number of seconds after which a socket times out if no data is
1820 #      received.
1821 #
1822 #  Type of value:
1823 #
1824 #      Time in seconds.
1825 #
1826 #  Default value:
1827 #
1828 #      None
1829 #
1830 #  Effect if unset:
1831 #
1832 #      A default value of 300 seconds is used.
1833 #
1834 #  Notes:
1835 #
1836 #      The default is quite high and you probably want to reduce it.
1837 #      If you aren't using an occasionally slow proxy like Tor,
1838 #      reducing it to a few seconds should be fine.
1839 #
1840 #  Examples:
1841 #
1842 #      socket-timeout 300
1843 #
1844 socket-timeout 300
1845 #
1846 #  6.9. max-client-connections
1847 #  ============================
1848 #
1849 #  Specifies:
1850 #
1851 #      Maximum number of client connections that will be served.
1852 #
1853 #  Type of value:
1854 #
1855 #      Positive number.
1856 #
1857 #  Default value:
1858 #
1859 #      128
1860 #
1861 #  Effect if unset:
1862 #
1863 #      Connections are served until a resource limit is reached.
1864 #
1865 #  Notes:
1866 #
1867 #      Privoxy creates one thread (or process) for every incoming
1868 #      client connection that isn't rejected based on the access
1869 #      control settings.
1870 #
1871 #      If the system is powerful enough, Privoxy can theoretically
1872 #      deal with several hundred (or thousand) connections at the
1873 #      same time, but some operating systems enforce resource limits
1874 #      by shutting down offending processes and their default limits
1875 #      may be below the ones Privoxy would require under heavy load.
1876 #
1877 #      Configuring Privoxy to enforce a connection limit below the
1878 #      thread or process limit used by the operating system makes
1879 #      sure this doesn't happen. Simply increasing the operating
1880 #      system's limit would work too, but if Privoxy isn't the only
1881 #      application running on the system, you may actually want to
1882 #      limit the resources used by Privoxy.
1883 #
1884 #      If Privoxy is only used by a single trusted user, limiting the
1885 #      number of client connections is probably unnecessary. If there
1886 #      are multiple possibly untrusted users you probably still want
1887 #      to additionally use a packet filter to limit the maximal
1888 #      number of incoming connections per client. Otherwise a
1889 #      malicious user could intentionally create a high number of
1890 #      connections to prevent other users from using Privoxy.
1891 #
1892 #      Obviously using this option only makes sense if you choose a
1893 #      limit below the one enforced by the operating system.
1894 #
1895 #      One most POSIX-compliant systems Privoxy can't properly deal
1896 #      with more than FD_SETSIZE file descriptors at the same time
1897 #      and has to reject connections if the limit is reached. This
1898 #      will likely change in a future version, but currently this
1899 #      limit can't be increased without recompiling Privoxy with a
1900 #      different FD_SETSIZE limit.
1901 #
1902 #  Examples:
1903 #
1904 #      max-client-connections 256
1905 #
1906 #max-client-connections 256
1907 #
1908 #  6.10. listen-backlog
1909 #  =====================
1910 #
1911 #  Specifies:
1912 #
1913 #      Connection queue length requested from the operating system.
1914 #
1915 #  Type of value:
1916 #
1917 #      Number.
1918 #
1919 #  Default value:
1920 #
1921 #      128
1922 #
1923 #  Effect if unset:
1924 #
1925 #      A connection queue length of 128 is requested from the
1926 #      operating system.
1927 #
1928 #  Notes:
1929 #
1930 #      Under high load incoming connection may queue up before
1931 #      Privoxy gets around to serve them. The queue length is
1932 #      limitted by the operating system. Once the queue is full,
1933 #      additional connections are dropped before Privoxy can accept
1934 #      and serve them.
1935 #
1936 #      Increasing the queue length allows Privoxy to accept more
1937 #      incomming connections that arrive roughly at the same time.
1938 #
1939 #      Note that Privoxy can only request a certain queue length,
1940 #      whether or not the requested length is actually used depends
1941 #      on the operating system which may use a different length
1942 #      instead.
1943 #
1944 #      On many operating systems a limit of -1 can be specified to
1945 #      instruct the operating system to use the maximum queue length
1946 #      allowed. Check the listen man page to see if your platform
1947 #      allows this.
1948 #
1949 #      On some platforms you can use "netstat -Lan -p tcp" to see the
1950 #      effective queue length.
1951 #
1952 #      Effectively using a value above 128 usually requires changing
1953 #      the system configuration as well. On FreeBSD-based system the
1954 #      limit is controlled by the kern.ipc.soacceptqueue sysctl.
1955 #
1956 #  Examples:
1957 #
1958 #      listen-backlog 4096
1959 #
1960 #listen-backlog -1
1961 #
1962 #  6.11. enable-accept-filter
1963 #  ===========================
1964 #
1965 #  Specifies:
1966 #
1967 #      Whether or not Privoxy should use an accept filter
1968 #
1969 #  Type of value:
1970 #
1971 #      0 or 1
1972 #
1973 #  Default value:
1974 #
1975 #      0
1976 #
1977 #  Effect if unset:
1978 #
1979 #      No accept filter is enabled.
1980 #
1981 #  Notes:
1982 #
1983 #      Accept filters reduce the number of context switches by not
1984 #      passing sockets for new connections to Privoxy until a
1985 #      complete HTTP request is available.
1986 #
1987 #      As a result, Privoxy can process the whole request right away
1988 #      without having to wait for additional data first.
1989 #
1990 #      For this option to work, Privoxy has to be compiled with
1991 #      FEATURE_ACCEPT_FILTER and the operating system has to support
1992 #      it (which may require loading a kernel module).
1993 #
1994 #      Currently accept filters are only supported on FreeBSD-based
1995 #      systems. Check the accf_http(9) man page to learn how to
1996 #      enable the support in the operating system.
1997 #
1998 #  Examples:
1999 #
2000 #      enable-accept-filter 1
2001 #
2002 #enable-accept-filter 1
2003 #
2004 #  6.12. handle-as-empty-doc-returns-ok
2005 #  =====================================
2006 #
2007 #  Specifies:
2008 #
2009 #      The status code Privoxy returns for pages blocked with
2010 #      +handle-as-empty-document.
2011 #
2012 #  Type of value:
2013 #
2014 #      0 or 1
2015 #
2016 #  Default value:
2017 #
2018 #      0
2019 #
2020 #  Effect if unset:
2021 #
2022 #      Privoxy returns a status 403(forbidden) for all blocked pages.
2023 #
2024 #  Effect if set:
2025 #
2026 #      Privoxy returns a status 200(OK) for pages blocked with
2027 #      +handle-as-empty-document and a status 403(Forbidden) for all
2028 #      other blocked pages.
2029 #
2030 #  Notes:
2031 #
2032 #      This directive was added as a work-around for Firefox bug
2033 #      492459: "Websites are no longer rendered if SSL requests for
2034 #      JavaScripts are blocked by a proxy."
2035 #      (https://bugzilla.mozilla.org/show_bug.cgi?id=492459), the bug
2036 #      has been fixed for quite some time, but this directive is also
2037 #      useful to make it harder for websites to detect whether or not
2038 #      resources are being blocked.
2039 #
2040 #handle-as-empty-doc-returns-ok 1
2041 #
2042 #  6.13. enable-compression
2043 #  =========================
2044 #
2045 #  Specifies:
2046 #
2047 #      Whether or not buffered content is compressed before delivery.
2048 #
2049 #  Type of value:
2050 #
2051 #      0 or 1
2052 #
2053 #  Default value:
2054 #
2055 #      0
2056 #
2057 #  Effect if unset:
2058 #
2059 #      Privoxy does not compress buffered content.
2060 #
2061 #  Effect if set:
2062 #
2063 #      Privoxy compresses buffered content before delivering it to
2064 #      the client, provided the client supports it.
2065 #
2066 #  Notes:
2067 #
2068 #      This directive is only supported if Privoxy has been compiled
2069 #      with FEATURE_COMPRESSION, which should not to be confused with
2070 #      FEATURE_ZLIB.
2071 #
2072 #      Compressing buffered content is mainly useful if Privoxy and
2073 #      the client are running on different systems. If they are
2074 #      running on the same system, enabling compression is likely to
2075 #      slow things down. If you didn't measure otherwise, you should
2076 #      assume that it does and keep this option disabled.
2077 #
2078 #      Privoxy will not compress buffered content below a certain
2079 #      length.
2080 #
2081 #enable-compression 1
2082 #
2083 #  6.14. compression-level
2084 #  ========================
2085 #
2086 #  Specifies:
2087 #
2088 #      The compression level that is passed to the zlib library when
2089 #      compressing buffered content.
2090 #
2091 #  Type of value:
2092 #
2093 #      Positive number ranging from 0 to 9.
2094 #
2095 #  Default value:
2096 #
2097 #      1
2098 #
2099 #  Notes:
2100 #
2101 #      Compressing the data more takes usually longer than
2102 #      compressing it less or not compressing it at all. Which level
2103 #      is best depends on the connection between Privoxy and the
2104 #      client. If you can't be bothered to benchmark it for yourself,
2105 #      you should stick with the default and keep compression
2106 #      disabled.
2107 #
2108 #      If compression is disabled, the compression level is
2109 #      irrelevant.
2110 #
2111 #  Examples:
2112 #
2113 #          # Best speed (compared to the other levels)
2114 #          compression-level 1
2115 #
2116 #          # Best compression
2117 #          compression-level 9
2118 #
2119 #          # No compression. Only useful for testing as the added header
2120 #          # slightly increases the amount of data that has to be sent.
2121 #          # If your benchmark shows that using this compression level
2122 #          # is superior to using no compression at all, the benchmark
2123 #          # is likely to be flawed.
2124 #          compression-level 0
2125 #
2126 #
2127 #compression-level 1
2128 #
2129 #  6.15. client-header-order
2130 #  ==========================
2131 #
2132 #  Specifies:
2133 #
2134 #      The order in which client headers are sorted before forwarding
2135 #      them.
2136 #
2137 #  Type of value:
2138 #
2139 #      Client header names delimited by spaces or tabs
2140 #
2141 #  Default value:
2142 #
2143 #      None
2144 #
2145 #  Notes:
2146 #
2147 #      By default Privoxy leaves the client headers in the order they
2148 #      were sent by the client. Headers are modified in-place, new
2149 #      headers are added at the end of the already existing headers.
2150 #
2151 #      The header order can be used to fingerprint client requests
2152 #      independently of other headers like the User-Agent.
2153 #
2154 #      This directive allows to sort the headers differently to
2155 #      better mimic a different User-Agent. Client headers will be
2156 #      emitted in the order given, headers whose name isn't
2157 #      explicitly specified are added at the end.
2158 #
2159 #      Note that sorting headers in an uncommon way will make
2160 #      fingerprinting actually easier. Encrypted headers are not
2161 #      affected by this directive.
2162 #
2163 #client-header-order Host \
2164 #   Accept \
2165 #   Accept-Language \
2166 #   Accept-Encoding \
2167 #   Proxy-Connection \
2168 #   Referer \
2169 #   Cookie \
2170 #   DNT \
2171 #   If-Modified-Since \
2172 #   Cache-Control \
2173 #   Content-Length \
2174 #   Content-Type
2175 #
2176 #
2177 #  6.16. client-specific-tag
2178 #  ==========================
2179 #
2180 #  Specifies:
2181 #
2182 #      The name of a tag that will always be set for clients that
2183 #      requested it through the webinterface.
2184 #
2185 #  Type of value:
2186 #
2187 #      Tag name followed by a description that will be shown in the
2188 #      webinterface
2189 #
2190 #  Default value:
2191 #
2192 #      None
2193 #
2194 #  Notes:
2195 #
2196 #      +-----------------------------------------------------+
2197 #      |                       Warning                       |
2198 #      |-----------------------------------------------------|
2199 #      |This is an experimental feature. The syntax is likely|
2200 #      |to change in future versions.                        |
2201 #      +-----------------------------------------------------+
2202 #
2203 #      Client-specific tags allow Privoxy admins to create different
2204 #      profiles and let the users chose which one they want without
2205 #      impacting other users.
2206 #
2207 #      One use case is allowing users to circumvent certain blocks
2208 #      without having to allow them to circumvent all blocks. This is
2209 #      not possible with the enable-remote-toggle feature because it
2210 #      would bluntly disable all blocks for all users and also affect
2211 #      other actions like filters. It also is set globally which
2212 #      renders it useless in most multi-user setups.
2213 #
2214 #      After a client-specific tag has been defined with the
2215 #      client-specific-tag directive, action sections can be
2216 #      activated based on the tag by using a CLIENT-TAG pattern. The
2217 #      CLIENT-TAG pattern is evaluated at the same priority as URL
2218 #      patterns, as a result the last matching pattern wins. Tags
2219 #      that are created based on client or server headers are
2220 #      evaluated later on and can overrule CLIENT-TAG and URL
2221 #      patterns!
2222 #
2223 #      The tag is set for all requests that come from clients that
2224 #      requested it to be set. Note that "clients" are differentiated
2225 #      by IP address, if the IP address changes the tag has to be
2226 #      requested again.
2227 #
2228 #      Clients can request tags to be set by using the CGI interface
2229 #      http://config.privoxy.org/client-tags. The specific tag
2230 #      description is only used on the web page and should be phrased
2231 #      in away that the user understand the effect of the tag.
2232 #
2233 #  Examples:
2234 #
2235 #          # Define a couple of tags, the described effect requires action sections
2236 #          # that are enabled based on CLIENT-TAG patterns.
2237 #          client-specific-tag circumvent-blocks Overrule blocks but do not affect other actions
2238 #          disable-content-filters Disable content-filters but do not affect other actions
2239 #
2240 #
2241 #
2242 #  6.17. client-tag-lifetime
2243 #  ==========================
2244 #
2245 #  Specifies:
2246 #
2247 #      How long a temporarily enabled tag remains enabled.
2248 #
2249 #  Type of value:
2250 #
2251 #      Time in seconds.
2252 #
2253 #  Default value:
2254 #
2255 #      60
2256 #
2257 #  Notes:
2258 #
2259 #      +-----------------------------------------------------+
2260 #      |                       Warning                       |
2261 #      |-----------------------------------------------------|
2262 #      |This is an experimental feature. The syntax is likely|
2263 #      |to change in future versions.                        |
2264 #      +-----------------------------------------------------+
2265 #
2266 #      In case of some tags users may not want to enable them
2267 #      permanently, but only for a short amount of time, for example
2268 #      to circumvent a block that is the result of an overly-broad
2269 #      URL pattern.
2270 #
2271 #      The CGI interface http://config.privoxy.org/client-tags
2272 #      therefore provides a "enable this tag temporarily" option. If
2273 #      it is used, the tag will be set until the client-tag-lifetime
2274 #      is over.
2275 #
2276 #  Examples:
2277 #
2278 #            # Increase the time to life for temporarily enabled tags to 3 minutes
2279 #            client-tag-lifetime 180
2280 #
2281 #
2282 #
2283 #  6.18. trust-x-forwarded-for
2284 #  ============================
2285 #
2286 #  Specifies:
2287 #
2288 #      Whether or not Privoxy should use IP addresses specified with
2289 #      the X-Forwarded-For header
2290 #
2291 #  Type of value:
2292 #
2293 #      0 or one
2294 #
2295 #  Default value:
2296 #
2297 #      0
2298 #
2299 #  Notes:
2300 #
2301 #      +-----------------------------------------------------+
2302 #      |                       Warning                       |
2303 #      |-----------------------------------------------------|
2304 #      |This is an experimental feature. The syntax is likely|
2305 #      |to change in future versions.                        |
2306 #      +-----------------------------------------------------+
2307 #
2308 #      If clients reach Privoxy through another proxy, for example a
2309 #      load balancer, Privoxy can't tell the client's IP address from
2310 #      the connection. If multiple clients use the same proxy, they
2311 #      will share the same client tag settings which is usually not
2312 #      desired.
2313 #
2314 #      This option lets Privoxy use the X-Forwarded-For header value
2315 #      as client IP address. If the proxy sets the header, multiple
2316 #      clients using the same proxy do not share the same client tag
2317 #      settings.
2318 #
2319 #      This option should only be enabled if Privoxy can only be
2320 #      reached through a proxy and if the proxy can be trusted to set
2321 #      the header correctly. It is recommended that ACL are used to
2322 #      make sure only trusted systems can reach Privoxy.
2323 #
2324 #      If access to Privoxy isn't limited to trusted systems, this
2325 #      option would allow malicious clients to change the client tags
2326 #      for other clients or increase Privoxy's memory requirements by
2327 #      registering lots of client tag settings for clients that don't
2328 #      exist.
2329 #
2330 #  Examples:
2331 #
2332 #            # Allow systems that can reach Privoxy to provide the client
2333 #            # IP address with a X-Forwarded-For header.
2334 #            trust-x-forwarded-for 1
2335 #
2336 #
2337 #
2338 #  6.19. receive-buffer-size
2339 #  ==========================
2340 #
2341 #  Specifies:
2342 #
2343 #      The size of the buffer Privoxy uses to receive data from the
2344 #      server.
2345 #
2346 #  Type of value:
2347 #
2348 #      Size in bytes
2349 #
2350 #  Default value:
2351 #
2352 #      5000
2353 #
2354 #  Notes:
2355 #
2356 #      Increasing the receive-buffer-size increases Privoxy's memory
2357 #      usage but can lower the number of context switches and thereby
2358 #      reduce the cpu usage and potentially increase the throughput.
2359 #
2360 #      This is mostly relevant for fast network connections and large
2361 #      downloads that don't require filtering.
2362 #
2363 #      Reducing the buffer size reduces the amount of memory Privoxy
2364 #      needs to handle the request but increases the number of
2365 #      systemcalls and may reduce the throughput.
2366 #
2367 #      A dtrace command like: "sudo dtrace -n 'syscall::read:return /
2368 #      execname == "privoxy"/ { @[execname] = llquantize(arg0, 10, 0,
2369 #      5, 20); @m = max(arg0)}'" can be used to properly tune the
2370 #      receive-buffer-size. On systems without dtrace, strace or
2371 #      truss may be used as less convenient alternatives.
2372 #
2373 #      If the buffer is too large it will increase Privoxy's memory
2374 #      footprint without any benefit. As the memory is (currently)
2375 #      cleared before using it, a buffer that is too large can
2376 #      actually reduce the throughput.
2377 #
2378 #  Examples:
2379 #
2380 #            # Increase the receive buffer size
2381 #            receive-buffer-size 32768
2382 #
2383 #
2384 #
2385 #  7. WINDOWS GUI OPTIONS
2386 #  =======================
2387 #
2388 #  Privoxy has a number of options specific to the Windows GUI
2389 #  interface:
2390 #
2391 #
2392 #
2393 #  If "activity-animation" is set to 1, the Privoxy icon will animate
2394 #  when "Privoxy" is active. To turn off, set to 0.
2395 #
2396 #activity-animation   1
2397 #
2398 #
2399 #
2400 #  If "log-messages" is set to 1, Privoxy copies log messages to the
2401 #  console window. The log detail depends on the debug directive.
2402 #
2403 #log-messages   1
2404 #
2405 #
2406 #
2407 #  If "log-buffer-size" is set to 1, the size of the log buffer, i.e.
2408 #  the amount of memory used for the log messages displayed in the
2409 #  console window, will be limited to "log-max-lines" (see below).
2410 #
2411 #  Warning: Setting this to 0 will result in the buffer to grow
2412 #  infinitely and eat up all your memory!
2413 #
2414 #log-buffer-size 1
2415 #
2416 #
2417 #
2418 #  log-max-lines is the maximum number of lines held in the log
2419 #  buffer. See above.
2420 #
2421 #log-max-lines 200
2422 #
2423 #
2424 #
2425 #  If "log-highlight-messages" is set to 1, Privoxy will highlight
2426 #  portions of the log messages with a bold-faced font:
2427 #
2428 #log-highlight-messages 1
2429 #
2430 #
2431 #
2432 #  The font used in the console window:
2433 #
2434 #log-font-name Comic Sans MS
2435 #
2436 #
2437 #
2438 #  Font size used in the console window:
2439 #
2440 #log-font-size 8
2441 #
2442 #
2443 #
2444 #  "show-on-task-bar" controls whether or not Privoxy will appear as
2445 #  a button on the Task bar when minimized:
2446 #
2447 #show-on-task-bar 0
2448 #
2449 #
2450 #
2451 #  If "close-button-minimizes" is set to 1, the Windows close button
2452 #  will minimize Privoxy instead of closing the program (close with
2453 #  the exit option on the File menu).
2454 #
2455 #close-button-minimizes 1
2456 #
2457 #
2458 #
2459 #  The "hide-console" option is specific to the MS-Win console
2460 #  version of Privoxy. If this option is used, Privoxy will
2461 #  disconnect from and hide the command console.
2462 #
2463 #hide-console
2464 #
2465 #
2466 #