Advertisement
adamchilcott

polipo.conf

Jan 2nd, 2018
613
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ##############
  2. #Remote Access
  3. ##############
  4.  
  5. #Enable IPv4 Only
  6. #proxyAddress = "0.0.0.0"
  7.  
  8. #Enable Both IPv4 & IPv6
  9. #proxyAddress = "::0"
  10.  
  11. #Enable Remote Client Access Via The Following IP Address
  12. #proxyAddress = "127.0.0.1"
  13.  
  14. ##################
  15. #Bind To Interface
  16. ##################
  17. #proxyOutgoingAddress = "134.157.168.1"
  18.  
  19. #################
  20. #Client Whitelist
  21. #################
  22. #allowedClients = 127.0.0.1, 134.157.168.57
  23. #allowedClients = 127.0.0.1, 134.157.168.0/24
  24.  
  25. ########################
  26. #Specify Polipo Identity
  27. ########################
  28. #proxyName = "polipo.example.org"
  29.  
  30. ########################
  31. #Restrict To Single User
  32. ########################
  33. cacheIsShared = false
  34.  
  35. ####################
  36. #Enable Parent Proxy
  37. ####################
  38. #parentProxy = "squid.example.org:3128"
  39.  
  40. ##########################
  41. #Enable Parent SOCKS Proxy
  42. ##########################
  43. #socksParentProxy = "localhost:9050"
  44. #socksProxyType = socks5
  45.  
  46. ####################################
  47. #Scrub Private Information From Logs
  48. ####################################
  49. scrubLogs = true
  50.  
  51. ########################
  52. #Enable Low-Memory Usage
  53. ########################
  54. #chunkHighMark = 819200
  55. #objectHighMark = 128
  56.  
  57. #########################
  58. #Enable High-Memory Usage
  59. #########################
  60. #chunkHighMark = 50331648
  61. #objectHighMark = 16384
  62.  
  63. ################################
  64. #Disable On-Disk Cache
  65. #*NOTE* Do Not Define On Android
  66. ################################
  67. #diskCacheRoot = ""
  68.  
  69. ################################
  70. #Define On-Disk Cache Location
  71. #*NOTE* Do Not Define On Android
  72. ################################
  73. #diskCacheRoot = "~/.polipo-cache/"
  74.  
  75. ############################
  76. #Disable Local Web Server
  77. #*NOTE* Do Define On Android
  78. ############################
  79. localDocumentRoot = ""
  80.  
  81. ##################################################
  82. #Enable Access To Polipo Pages.
  83. #*WARNING*
  84. #Serious Privacy Leak If The Proxy Is Being Shared
  85. ##################################################
  86. #disableIndexing = false
  87. #disableServersList = false
  88.  
  89. ###################################
  90. #Disable Local Web Server Interface
  91. #*NOTE* Do Define On Android
  92. ###################################
  93. disableLocalInterface = true
  94.  
  95. ##########################################
  96. #Contact Only IPv4 Hosts
  97. #This Can Make DNS Queries Slightly Faster
  98. ##########################################
  99. #dnsQueryIPv6 = no
  100.  
  101. ###########################################
  102. #Prefer IPv4 To IPv6 For Double-Stack Hosts
  103. ###########################################
  104. #dnsQueryIPv6 = reluctantly
  105.  
  106. ##################################################################
  107. #Disable Polipo's DNS Resolver & Use The System's Default Resolver
  108. #*NOTE* Polipo Will Freeze During Every DNS Query
  109. ##################################################################
  110. #dnsUseGethostbyname = yes
  111.  
  112. ###########################################
  113. #Detect Proxy Loops
  114. #This Will Cause Your Hostname Or proxyName
  115. #To Be Included In Every Request
  116. ###########################################
  117. #disableVia = false
  118.  
  119. ###################################
  120. #Slightly Reduce The Amount Of
  121. Information You Leak About Yourself
  122. ###################################
  123. censoredHeaders = from, accept-language
  124. censorReferer = maybe
  125.  
  126. ########################
  127. #Engage Tinfoil Hat
  128. #*NOTE* Will Break Sites
  129. ########################
  130. #censoredHeaders = set-cookie, cookie, cookie2, from, accept-language
  131. #censorReferer = true
  132.  
  133. ###########################################################
  134. #Poor Man's Multiplexing.
  135. #Increase Sizes If You're On A Fast Line
  136. #If ppmSize Is Small, You'll Want ppmFirstSize To Be Larger
  137. #*NOTE* PPM Is Somewhat Unreliable
  138. ###########################################################
  139. #pmmFirstSize = 16384
  140. #pmmSize = 8192
  141.  
  142. #####################################################
  143. #Enable If Your User-Agent Handles Headers Reasonably
  144. #*NOTE* Most Do Not
  145. #####################################################
  146. #relaxTransparency = maybe
  147.  
  148. ########################################################
  149. #Never Revalidate Instances For Which Data Is Available
  150. #*NOTE* Not A Good Idea
  151. ########################################################
  152. #relaxTransparency = yes
  153.  
  154. ################################
  155. #Enable If You Have No Network
  156. #*NOTE* Do Not Define On Android
  157. ################################
  158. #proxyOffline = yes
  159.  
  160. ################################################
  161. #Avoid Revalidating Instances With A Vary Header
  162. #*NOTE* Not A Good Idea
  163. ################################################
  164. #mindlesslyCacheVary = true
  165.  
  166. ######################################################
  167. #Add A No-Transform Directive To All Outgoing Requests
  168. ######################################################
  169. #alwaysAddNoTransform = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement