Local port to proxy associations to be performed.
The example shows how to configure a proxy to handle port 80 as HTTP relay, and all other ports as HTTP connect.
Declarations
Type
list of (submodule)
Example
[
{
doNotRedirect = [
"-d 1.2.0.0/16"
];
port = 23456;
proxy = "1.2.3.4:8080";
redirectCondition = "--dport 80";
type = "http-relay";
}
{
doNotRedirect = [
"-d 1.2.0.0/16"
];
port = 23457;
proxy = "1.2.3.4:8080";
redirectCondition = true;
type = "http-connect";
}
]