Skip to content

Instantly share code, notes, and snippets.

@odenijs
Forked from michaellwest/ProxyForFiddler.config
Created May 16, 2019 13:15
Show Gist options
  • Save odenijs/66bfa0be5b10e8093ec9a20e0c4a30b8 to your computer and use it in GitHub Desktop.
Save odenijs/66bfa0be5b10e8093ec9a20e0c4a30b8 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