Can I set-up Privoxy as a whitelist of “good” sites?
1235 1236 Sure. There are a couple of things you can do for simple white-listing. 1237 Here’s one real easy one: 1238 1239 ############################################################ 1240 # Blacklist 1241 ############################################################ 1242 { +block } 1243 / # Block *all* URLs 1244 1245 ############################################################ 1246 # Whitelist 1247 ############################################################ 1248 { -block } 1249 kids.example.com 1250 toys.example.com 1251 games.example.com 1252 1253 This allows access to only those three sites by first blocking all URLs, 1254 and then subsequently allowing three specific exceptions. 1255 1256 Another approach is Privoxy’s trustfile concept, which incorporates the 1257 notion of “trusted referrers”. See the Trust documentation for details. 1258 1259 These are fairly simple approaches and are not completely foolproof. There 1260 are various other configuration options that should be disa