mirror of
https://github.com/minio/minio.git
synced 2024-12-24 06:05:55 -05:00
Show "https" in the "minio server export/" output if certificates are available. (#2065)
fixes #2036
This commit is contained in:
parent
cd1c2db864
commit
3f2b4d9dc2
@ -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…
Reference in New Issue
Block a user