@zthun/bouncer
    Preparing search index...

    Interface IZBouncerConfigServer

    Represents a configuration for a running server.

    interface IZBouncerConfigServer {
        domains: ZBouncerDomainMap;
        handle?: ZBouncerConfigServerHandle;
        port?: number;
        security?: IZBouncerConfigSecurity;
        type: ZBouncerConfigServerType;
    }
    Index

    Properties

    The domain mappings.

    What this server does.

    The server can act as a reverse proxy or a redirection to a more secure reverse proxy.

    port?: number

    Port number.

    If this is falsy, the the default port is determined by the server protocol.

    The security for the server. This is only valid for https servers.

    The type of server.

    The default value is ZBouncerConfigServerType.Http