summaryrefslogtreecommitdiff
path: root/system/tls/enabledev.go
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2016-12-28 16:12:49 -0800
committerSteve Manuel <nilslice@gmail.com>2016-12-28 16:12:49 -0800
commit5c340ca57e876a556a5b57e5a7dd32b0ae288440 (patch)
treedacaed91abb57bc6891c1b2cb58a82fc0c9610fc /system/tls/enabledev.go
parent8e5aca003ca90e65b9812a4a826a5f8b768b59bb (diff)
moving dev notes in run command to main
Diffstat (limited to 'system/tls/enabledev.go')
-rw-r--r--system/tls/enabledev.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/system/tls/enabledev.go b/system/tls/enabledev.go
index 394666b..3550fc0 100644
--- a/system/tls/enabledev.go
+++ b/system/tls/enabledev.go
@@ -1,7 +1,6 @@
package tls
import (
- "fmt"
"log"
"net/http"
"os"
@@ -27,8 +26,4 @@ func EnableDev() {
key := filepath.Join(vendorPath, "devcerts", "key.pem")
log.Fatalln(http.ListenAndServeTLS(":10443", cert, key, nil))
- fmt.Println("Server listening on https://localhost:10443 for requests... [DEV]")
- fmt.Println("----")
- fmt.Println("If your browser rejects HTTPS requests, try allowing insecure connections on localhost.")
- fmt.Println("on Chrome, visit chrome://flags/#allow-insecure-localhost")
}