Skip to content

Instantly share code, notes, and snippets.

@michaellwest
Created February 16, 2018 19:43
Show Gist options
  • Save michaellwest/169cff60a13a8f39b51919066dc82278 to your computer and use it in GitHub Desktop.
Save michaellwest/169cff60a13a8f39b51919066dc82278 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