package
0.9.1
Repository: https://github.com/machbase/neo-shell.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author

# README

module "github.com/machbase/neo-shell/server/mqttsvr/mqtt" {
    config {
        TcpConfig {
            ListenAddress    = "${GLOBAL_IP_BIND}:1884"
            SoLinger         = 0
            KeepAlive        = 10
            NoDelay          = true
            Tls {
                Disabled         = false // false is default
                LoadSystemCAs    = false
                LoadPrivateCAs   = true
                CertFile         = GLOBAL_SERVER_CERT
                KeyFile          = GLOBAL_SERVER_KEY
                HandshakeTimeout = "5s" // equivalent 5000000000
            }
        }
    }
    inject <your_module> Mqttd {}
}