@nospamproxy/core
    Preparing search index...

    Root configuration schema

    interface SystemConfigurationOptions {
        cloudStatusUrl?: string;
        features?: string[];
        globalCacheDurationMs: number;
        hideTenantSelection?: boolean;
        httpTimeoutMs: number;
        loginPortalUrl: string;
        serviceEndPoints: ServiceEndPoints;
    }
    Index

    Properties

    cloudStatusUrl?: string

    The link to the status page for cloud. This should not be set for on-prem/server.

    features?: string[]

    List of enabled features.

    globalCacheDurationMs: number

    Duration in ms, for which a GET response can be cached, unless the respective property is overwritten in individual call.

    hideTenantSelection?: boolean

    Set to true to hide the tenant selection. Default value is false.

    httpTimeoutMs: number

    Duration in ms, after which all HTTP request will be aborted, unless the respective property is overwritten in individual call.

    loginPortalUrl: string
    serviceEndPoints: ServiceEndPoints