mirror of
https://github.com/minio/minio.git
synced 2025-03-31 01:33:41 -04: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.
|
// Initialize server config.
|
||||||
initServerConfig(c)
|
initServerConfig(c)
|
||||||
|
|
||||||
|
// If https.
|
||||||
|
tls := isSSL()
|
||||||
|
|
||||||
// Server address.
|
// Server address.
|
||||||
serverAddress := c.String("address")
|
serverAddress := c.String("address")
|
||||||
|
|
||||||
@ -265,7 +268,7 @@ func serverMain(c *cli.Context) {
|
|||||||
if port == "" {
|
if port == "" {
|
||||||
port = "80"
|
port = "80"
|
||||||
// if SSL is enabled, choose port as "443" instead.
|
// if SSL is enabled, choose port as "443" instead.
|
||||||
if isSSL() {
|
if tls {
|
||||||
port = "443"
|
port = "443"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -292,7 +295,6 @@ func serverMain(c *cli.Context) {
|
|||||||
console.Println("\n" + cred.String() + " " + colorMagenta("Region: ") + colorWhite(region))
|
console.Println("\n" + cred.String() + " " + colorMagenta("Region: ") + colorWhite(region))
|
||||||
|
|
||||||
hosts, port := getListenIPs(apiServer) // get listen ips and port.
|
hosts, port := getListenIPs(apiServer) // get listen ips and port.
|
||||||
tls := apiServer.TLSConfig != nil // 'true' if TLS is enabled.
|
|
||||||
|
|
||||||
console.Println("\nMinio Object Storage:")
|
console.Println("\nMinio Object Storage:")
|
||||||
// Print api listen ips.
|
// Print api listen ips.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user