Certificate and key must both be specified or empty together

master
Frederick F. Kautz IV 10 years ago
parent 58da5c0f87
commit 91384e73cf
  1. 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{

Loading…
Cancel
Save