Skip to content

Instantly share code, notes, and snippets.

@harshbaid
Forked from michaellwest/ProxyForFiddler.config
Created October 3, 2018 20:47
Show Gist options
  • Save harshbaid/f58e536f612f3ac3a9cb4ce1708352c8 to your computer and use it in GitHub Desktop.
Save harshbaid/f58e536f612f3ac3a9cb4ce1708352c8 to your computer and use it in GitHub Desktop.
Snippet to be added in the web.config, app.config, or machine.config to redirect traffic to the Fiddler proxy.
<system.net>
<defaultProxy enabled = "true" useDefaultCredentials = "true">
<proxy autoDetect="false" bypassonlocal="false" proxyaddress="http://127.0.0.1:8888" usesystemdefault="false" />
</defaultProxy>
</system.net>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment