Bypass the Upstream Proxy
To bypass the upstream proxy for all requests to a specific domain (for example, to emulate the IE Proxy bypass list), add a rule to Fiddler to the OnBeforeRequest function as follows:
if (oSession.HostnameIs("www.example.com")){
oSession.bypassGateway = true;
}