Insomnia-Script-SDK-Docs
    Preparing search index...

    Interface ProxyConfigOptions

    Represents the configuration options for a proxy.

    interface ProxyConfigOptions {
        authenticate: boolean;
        bypass?: string[];
        disabled?: boolean;
        host: string;
        match: string;
        password: string;
        port?: number;
        protocol: string;
        tunnel: boolean;
        username: string;
    }
    Index

    Properties

    authenticate: boolean

    A boolean indicating whether authentication is required for the proxy.

    bypass?: string[]

    (Optional) An array of strings specifying hostnames or IPs to bypass the proxy.

    disabled?: boolean

    (Optional) A boolean indicating whether the proxy is disabled, default is false.

    host: string

    The hostname or IP address of the proxy server.

    match: string

    A string pattern to match URLs for which the proxy should be used. It is used to initialize the UrlMatchPattern object internally.

    password: string

    The password for proxy authentication.

    port?: number

    (Optional) The port number of the proxy server.

    protocol: string

    The protocol used by the proxy.

    tunnel: boolean

    A boolean indicating whether to use tunneling for the proxy connection.

    username: string

    The username for proxy authentication.