Show "https" in the "minio server export/" output if certificates are available. (#2065)

fixes #2036
master
Krishna Srinivas 8 years ago committed by Harshavardhana
parent cd1c2db864
commit 3f2b4d9dc2
  1. 6
      server-main.go

@ -257,6 +257,9 @@ func serverMain(c *cli.Context) {
// Initialize server config.
initServerConfig(c)
// If https.
tls := isSSL()
// Server address.
serverAddress := c.String("address")
@ -265,7 +268,7 @@ func serverMain(c *cli.Context) {
if port == "" {
port = "80"
// if SSL is enabled, choose port as "443" instead.
if isSSL() {
if tls {
port = "443"
}
}
@ -292,7 +295,6 @@ func serverMain(c *cli.Context) {
console.Println("\n" + cred.String() + " " + colorMagenta("Region: ") + colorWhite(region))
hosts, port := getListenIPs(apiServer) // get listen ips and port.
tls := apiServer.TLSConfig != nil // 'true' if TLS is enabled.
console.Println("\nMinio Object Storage:")
// Print api listen ips.

Loading…
Cancel
Save