home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / Wideo_HD / Vidalia / vidalia-bundle-0.2.2.33-0.2.14.exe / Polipo / config.sample < prev    next >
Encoding:
Text File  |  2011-05-10  |  3.8 KB  |  153 lines

  1. # Sample configuration file for Polipo. -*-sh-*-
  2.  
  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.
  6.  
  7. # This file only contains some of the configuration variables; see the
  8. # list given by ``polipo -v'' and the manual for more.
  9.  
  10.  
  11. ### Basic configuration
  12. ### *******************
  13.  
  14. # Uncomment one of these if you want to allow remote clients to
  15. # connect:
  16.  
  17. # proxyAddress = "::0"        # both IPv4 and IPv6
  18. # proxyAddress = "0.0.0.0"    # IPv4 only
  19.  
  20. # If you do that, you'll want to restrict the set of hosts allowed to
  21. # connect:
  22.  
  23. # allowedClients = "127.0.0.1, 134.157.168.57"
  24. # allowedClients = "127.0.0.1, 134.157.168.0/24"
  25.  
  26. # Uncomment this if you want your Polipo to identify itself by
  27. # something else than the host name:
  28.  
  29. # proxyName = "polipo.example.org"
  30.  
  31. # Uncomment this if there's only one user using this instance of Polipo:
  32.  
  33. # cacheIsShared = false
  34.  
  35. # Uncomment this if you want to use a parent proxy:
  36.  
  37. # parentProxy = "squid.example.org:3128"
  38.  
  39. # Uncomment this if you want to use a parent SOCKS proxy:
  40.  
  41. # socksParentProxy = "localhost:9050"
  42. # socksProxyType = socks5
  43.  
  44.  
  45. ### Memory
  46. ### ******
  47.  
  48. # Uncomment this if you want Polipo to use a ridiculously small amount
  49. # of memory (a hundred C-64 worth or so):
  50.  
  51. # chunkHighMark = 819200
  52. # objectHighMark = 128
  53.  
  54. # Uncomment this if you've got plenty of memory:
  55.  
  56. # chunkHighMark = 50331648
  57. # objectHighMark = 16384
  58.  
  59.  
  60. ### On-disk data
  61. ### ************
  62.  
  63. # Uncomment this if you want to disable the on-disk cache:
  64.  
  65. # diskCacheRoot = ""
  66.  
  67. # Uncomment this if you want to put the on-disk cache in a
  68. # non-standard location:
  69.  
  70. # diskCacheRoot = "~/.polipo-cache/"
  71.  
  72. # Uncomment this if you want to disable the local web server:
  73.  
  74. # localDocumentRoot = ""
  75.  
  76. # Uncomment this if you want to enable the pages under /polipo/index?
  77. # and /polipo/servers?.  This is a serious privacy leak if your proxy
  78. # is shared.
  79.  
  80. # disableIndexing = false
  81. # disableServersList = false
  82.  
  83.  
  84. ### Domain Name System
  85. ### ******************
  86.  
  87. # Uncomment this if you want to contact IPv4 hosts only (and make DNS
  88. # queries somewhat faster):
  89.  
  90. # dnsQueryIPv6 = no
  91.  
  92. # Uncomment this if you want Polipo to prefer IPv4 to IPv6 for
  93. # double-stack hosts:
  94.  
  95. # dnsQueryIPv6 = reluctantly
  96.  
  97. # Uncomment this to disable Polipo's DNS resolver and use the system's
  98. # default resolver instead.  If you do that, Polipo will freeze during
  99. # every DNS query:
  100.  
  101. # dnsUseGethostbyname = yes
  102.  
  103.  
  104. ### HTTP
  105. ### ****
  106.  
  107. # Uncomment this if you want to enable detection of proxy loops.
  108. # This will cause your hostname (or whatever you put into proxyName
  109. # above) to be included in every request:
  110.  
  111. # disableVia=false
  112.  
  113. # Uncomment this if you want to slightly reduce the amount of
  114. # information that you leak about yourself:
  115.  
  116. # censoredHeaders = from, accept-language
  117. # censorReferer = maybe
  118.  
  119. # Uncomment this if you're paranoid.  This will break a lot of sites,
  120. # though:
  121.  
  122. # censoredHeaders = set-cookie, cookie, cookie2, from, accept-language
  123. # censorReferer = true
  124.  
  125. # Uncomment this if you want to use Poor Man's Multiplexing; increase
  126. # the sizes if you're on a fast line.  They should each amount to a few
  127. # seconds' worth of transfer; if pmmSize is small, you'll want
  128. # pmmFirstSize to be larger.
  129.  
  130. # Note that PMM is somewhat unreliable.
  131.  
  132. # pmmFirstSize = 16384
  133. # pmmSize = 8192
  134.  
  135. # Uncomment this if your user-agent does something reasonable with
  136. # Warning headers (most don't):
  137.  
  138. # relaxTransparency = maybe
  139.  
  140. # Uncomment this if you never want to revalidate instances for which
  141. # data is available (this is not a good idea):
  142.  
  143. # relaxTransparency = yes
  144.  
  145. # Uncomment this if you have no network:
  146.  
  147. # proxyOffline = yes
  148.  
  149. # Uncomment this if you want to avoid revalidating instances with a
  150. # Vary header (this is not a good idea):
  151.  
  152. # mindlesslyCacheVary = true
  153.