bunqueue v2.8 API referenceall versions · guide
bunqueue
    Preparing search index...

    Interface ClientTlsOptions

    TLS options for client connections. true enables TLS with system CA verification; the object form allows trusting a custom CA (self-signed server cert) or disabling verification.

    interface ClientTlsOptions {
        caFile?: string;
        rejectUnauthorized?: boolean;
    }
    Index
    caFile?: string

    Path to a PEM CA certificate to trust (e.g. the self-signed server cert)

    rejectUnauthorized?: boolean

    Verify the server certificate (default: true). Set false for self-signed in dev.