Interface TransportConfigListenHTTP

Part of TransportConfig type, configuration for listening for HTTP, including Websocket, connections.

interface TransportConfigListenHTTP {
    interfaceIP: string;
    isEnabled: boolean;
    port: number;
    staticContentPath?: string;
    tlsCertificatePath?: string;
    tlsKeyPath?: string;
    websocketSync: boolean;
}

Properties

interfaceIP: string
isEnabled: boolean
port: number
staticContentPath?: string
tlsCertificatePath?: string
tlsKeyPath?: string
websocketSync: boolean