polipo.config (1466B)
1 # polipo daemon configuration 2 config 'polipo' 'daemon' 3 # daemonise polipo (fork in background) 4 option 'daemonise' '1' 5 # where polipo will store its process pid 6 option 'pidFile' '/var/run/polipo.pid' 7 8 config 'polipo' 'general' 9 option 'enabled' '1' 10 # address on which polipo will listen, 0.0.0.0 means all addresses 11 option 'proxyAddress' '0.0.0.0' 12 # port on which polipo will listen, default is 8123 13 #option 'proxyPort' '8123' 14 # list of allowed clients to connect 15 list 'allowedClients' '192.168.1.0/24' 16 #list 'allowedClients' '127.0.0.1' 17 #list 'allowedClients' '192.168.2.1' 18 # how much RAM memory should Polipo use (in bytes). 19 option 'chunkHighMark' '1048576' 20 # enable disk cache index and serverlist of integrated polipo web interface 21 #option 'disableIndexing' '0' 22 #option 'disableServersList' '0' 23 # disable loging to syslog 24 option 'logSyslog' '0' 25 # set log file location (disabled when not set) 26 #option 'logFile' '/mnt/usbdrive/polipo/log' 27 28 config 'polipo' 'cache' 29 # disk cache location, you should always use external storage device 30 # (disabled when not set) 31 #option 'diskCacheRoot' '/mnt/usbdrive-p2/polipo/cache' 32 # disk cache cleanup settings 33 #option 'diskCacheUnlinkTime' '20d' 34 #option 'diskCacheTruncateTime' '5d' 35 #option 'diskCacheTruncateSize' '3145728' 36 # set to 1 if proxy is used by multiple users 37 #option 'cacheIsShared' '1' 38 39 config 'polipo' 'pmm' 40 # poor man's multiplexing semgnet size to fetch 41 #option 'pmmSize' '8192' 42