mirror of
https://github.com/minio/minio.git
synced 2025-12-01 22:02:33 -05:00
Certificate and key must both be specified or empty together
This commit is contained in:
3
main.go
3
main.go
@@ -40,6 +40,9 @@ func main() {
|
||||
log.Println(address)
|
||||
certFile := c.String("cert")
|
||||
keyFile := c.String("key")
|
||||
if (certFile != "" && keyFile == "") || (certFile == "" && keyFile != "") {
|
||||
log.Fatal("Both certificate and key must be provided to enable https")
|
||||
}
|
||||
tls := (certFile != "" && keyFile != "")
|
||||
storageType := getStorageType(storageTypeStr)
|
||||
serverConfig := server.ServerConfig{
|
||||
|
||||
Reference in New Issue
Block a user