I remember a while back reading about editing the proxy pac file which would switch proxies every set time interval, such as on an hourly basis.
But I cannot find the function or remember how to do this,
am I mistaken or is this possible with proxy.pac?
I am using mozilla.
UPDATE: Is FindProxyForURL() called every time a HTTP request is sent out?
The PAC file is simply a Javascript function
function FindProxyForURL(url, host) {}that gets the URL of the resource being fetched and returns a string specifying which proxy to use (orDIRECTfor no proxy at all) for that resource.All browser requests go through the function, regardless of the protocol.
In that function block, you should be able to query the current time and make a decision on which proxy to return.
For instance: