0

I use the simulator agent Fiddler,

but I don't want some URL to go to the proxy.

Like what:

I hope 'http://127.0.0.1' does not pass fiddler agent


When I debug the simulator.

The simulator app accesses 127.0.0.1, and this address is proxied byfiddler.

Actually I don't want to proxy him, Because 127.0.0.1 is handled by this APP itself.

but I need to proxy other non-local URLs, such as a.com`` b.com ...

ebyte
  • 1,469
  • 2
  • 17
  • 32
  • Could you try to reformulate the question to make it clearer, and provide more context? – Borislav Ivanov Jan 06 '20 at 15:14
  • When I debug the simulator. The simulator app accesses `127.0.0.1`, and this address is proxied by` fiddler`. Actually I don't want to proxy him, Because `127.0.0.1` is handled by this APP itself. but I need to proxy other non-local URLs, such as `a.com`` b.com` ... – ebyte Jan 07 '20 at 02:36

1 Answers1

0

To control which requests should not be sent through the Fiddler proxy, you can use the Tools -> Options -> Connections -> Bypass Fiddler for URLs that start with: setting. For example, to ignore localhost you can edit the setting to:

<-loopback>;*127.0.0.1;*localhost

After changing the setting, you must reattach Fiddler as system proxy, e.g. by stopping and then starting capturing with the Capturing button, or just by restarting Fiddler.

Borislav Ivanov
  • 4,684
  • 3
  • 31
  • 55