libgpg-error: Fix compiling with uclibc
[openadk.git] / package / polipo / files / config
blob6f33ff64c9294da11b6882a43a05b782319368ff
1 # Sample configuration file for Polipo. -*-sh-*-
3 # You should not need to use a configuration file; all configuration
4 # variables have reasonable defaults.  If you want to use one, you
5 # can copy this to /etc/polipo/config or to ~/.polipo and modify.
7 # This file only contains some of the configuration variables; see the
8 # list given by ``polipo -v'' and the manual for more.
10 daemonise = true
12 ### Basic configuration
13 ### *******************
15 # Uncomment one of these if you want to allow remote clients to
16 # connect:
18 # proxyAddress = "::0"        # both IPv4 and IPv6
19 # proxyAddress = "0.0.0.0"    # IPv4 only
21 # If you do that, you'll want to restrict the set of hosts allowed to
22 # connect:
24 # allowedClients = "127.0.0.1, 134.157.168.57"
25 # allowedClients = "127.0.0.1, 134.157.168.0/24"
27 # Uncomment this if you want your Polipo to identify itself by
28 # something else than the host name:
30 # proxyName = "polipo.example.org"
32 # Uncomment this if there's only one user using this instance of Polipo:
34 # cacheIsShared = false
36 # Uncomment this if you want to use a parent proxy:
38 # parentProxy = "squid.example.org:3128"
40 # Uncomment this if you want to use a parent SOCKS proxy:
42 # socksParentProxy = "localhost:9050"
43 # socksProxyType = socks5
46 ### Memory
47 ### ******
49 # Uncomment this if you want Polipo to use a ridiculously small amount
50 # of memory (a hundred C-64 worth or so):
52 # chunkHighMark = 819200
53 # objectHighMark = 128
55 # Uncomment this if you've got plenty of memory:
57 # chunkHighMark = 50331648
58 # objectHighMark = 16384
61 ### On-disk data
62 ### ************
64 # Uncomment this if you want to disable the on-disk cache:
66 # diskCacheRoot = ""
68 # Uncomment this if you want to put the on-disk cache in a
69 # non-standard location:
71 # diskCacheRoot = "~/.polipo-cache/"
73 # Uncomment this if you want to disable the local web server:
75 # localDocumentRoot = ""
77 # Uncomment this if you want to enable the pages under /polipo/index?
78 # and /polipo/servers?.  This is a serious privacy leak if your proxy
79 # is shared.
81 # disableIndexing = false
82 # disableServersList = false
85 ### Domain Name System
86 ### ******************
88 # Uncomment this if you want to contact IPv4 hosts only (and make DNS
89 # queries somewhat faster):
91 # dnsQueryIPv6 = no
93 # Uncomment this if you want Polipo to prefer IPv4 to IPv6 for
94 # double-stack hosts:
96 # dnsQueryIPv6 = reluctantly
98 # Uncomment this to disable Polipo's DNS resolver and use the system's
99 # default resolver instead.  If you do that, Polipo will freeze during
100 # every DNS query:
102 # dnsUseGethostbyname = yes
105 ### HTTP
106 ### ****
108 # Uncomment this if you want to enable detection of proxy loops.
109 # This will cause your hostname (or whatever you put into proxyName
110 # above) to be included in every request:
112 # disableVia=false
114 # Uncomment this if you want to slightly reduce the amount of
115 # information that you leak about yourself:
117 # censoredHeaders = from, accept-language
118 # censorReferer = maybe
120 # Uncomment this if you're paranoid.  This will break a lot of sites,
121 # though:
123 # censoredHeaders = set-cookie, cookie, cookie2, from, accept-language
124 # censorReferer = true
126 # Uncomment this if you want to use Poor Man's Multiplexing; increase
127 # the sizes if you're on a fast line.  They should each amount to a few
128 # seconds' worth of transfer; if pmmSize is small, you'll want
129 # pmmFirstSize to be larger.
131 # Note that PMM is somewhat unreliable.
133 # pmmFirstSize = 16384
134 # pmmSize = 8192
136 # Uncomment this if your user-agent does something reasonable with
137 # Warning headers (most don't):
139 # relaxTransparency = maybe
141 # Uncomment this if you never want to revalidate instances for which
142 # data is available (this is not a good idea):
144 # relaxTransparency = yes
146 # Uncomment this if you have no network:
148 # proxyOffline = yes
150 # Uncomment this if you want to avoid revalidating instances with a
151 # Vary header (this is not a good idea):
153 # mindlesslyCacheVary = true