Skip to content

Instantly share code, notes, and snippets.

@jhorsman
Last active December 30, 2020 12:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhorsman/d995ded7e6f9ad2e2260cd4549aeaf26 to your computer and use it in GitHub Desktop.
Save jhorsman/d995ded7e6f9ad2e2260cd4549aeaf26 to your computer and use it in GitHub Desktop.
Proxy configuration in .NET Web.config. See https://gist.github.com/jhorsman/bb2863ae2779c46982b79dc016d7ff49 for .NET Core
<system.net>
<defaultProxy>
<proxy
usesystemdefault="true"
proxyaddress="http://localhost:8500"
bypassonlocal="False"
/>
</defaultProxy>
</system.net>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment