@cdk-x/hetzner
    Preparing search index...

    Interface LoadBalancerServiceHttp

    Configuration option for protocols http and https.

    interface LoadBalancerServiceHttp {
        certificates?: (number | IResolvable)[];
        cookieLifetime?: number;
        cookieName?: string;
        redirectHttp?: boolean;
        stickySessions?: boolean;
    }
    Index

    Properties

    certificates?: (number | IResolvable)[]

    IDs of the Certificates to use for TLS/SSL termination by the Load Balancer; empty for TLS/SSL passthrough or if protocol is http.

    cookieLifetime?: number

    Lifetime of the cookie used for sticky sessions (in seconds).

    cookieName?: string

    Name of the cookie used for sticky sessions.

    redirectHttp?: boolean

    Redirect HTTP requests to HTTPS. Only available if protocol is https.

    stickySessions?: boolean

    Use sticky sessions. Only available if protocol is http or https.