We recommend an encrypted HTTPS connection for production setups. However, we also accept unencrypted HTTP connections for development purposes. HTTP redirects will not be followed and cache headers will be ignored.

interface HttpDestination {
    authentication?: HttpDestinationAuthentication;
    type: "HTTP";
    url: string;
}

Properties

Authentication methods (such as Basic or Bearer).

type: "HTTP"
url: string

URL to the target destination.

Generated using TypeDoc