system
6
content of proxyconf is simple function to make sure only http traffic is gouing through proxy:
function FindProxyForURL(url,host)
{if(url.substring(0,5)==“http:”)
return"PROXY 127.0.0.1:8080";
return"DIRECT";}
could you please post the configuration you suggest in detail (I’m not sure I do understand exactly what you mean)?