This commit is contained in:
nikk gitanes
2025-01-25 10:13:40 +03:00
parent 95bbf831f5
commit 85f96b399c
2 changed files with 3 additions and 3 deletions

View File

@@ -37,7 +37,7 @@ func Start(port, ip, sslport, sslCert, sslKey string, sslEnabled, roSets, search
settings.BTsets.SslKey = sslKey
}
log.TLogln("Check web ssl port", sslport)
l, err := net.Listen("tcp", ":"+sslport)
l, err := net.Listen("tcp", ip+":"+sslport)
if l != nil {
l.Close()
}