-
Notifications
You must be signed in to change notification settings - Fork 176
Closed
Labels
Description
Currently to support a proxy I am using a config file such as Aerial.exe.config. If you are using the scr version you will also need Aerial.scr.config
Here is an example configuration file that allows overrides the Proxy set by WebClient.
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.net>
<defaultProxy enabled="true">
<proxy proxyaddress="http://127.0.0.1:3128" />
</defaultProxy>
</system.net>
</configuration>Would it be possible to add this to the documentation? If you are behind a proxy some users will not know how to configure this.