diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-12-28 16:12:49 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-12-28 16:12:49 -0800 |
commit | 5c340ca57e876a556a5b57e5a7dd32b0ae288440 (patch) | |
tree | dacaed91abb57bc6891c1b2cb58a82fc0c9610fc /system/tls/enabledev.go | |
parent | 8e5aca003ca90e65b9812a4a826a5f8b768b59bb (diff) |
moving dev notes in run command to main
Diffstat (limited to 'system/tls/enabledev.go')
-rw-r--r-- | system/tls/enabledev.go | 5 |
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") } |