Interface ProxyTypeHttp

A HTTP transparent proxy server. Subtype of ProxyType.

interface ProxyTypeHttp {
    @type: "proxyTypeHttp";
    http_only?: boolean;
    password: string;
    username: string;
}

Properties

@type: "proxyTypeHttp"
http_only?: boolean

Pass true if the proxy supports only HTTP requests and doesn't support transparent TCP connections via HTTP CONNECT method.

password: string

Password for logging in; may be empty.

username: string

Username for logging in; may be empty.