diff options
-rw-r--r-- | system/tls/enabledev.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/system/tls/enabledev.go b/system/tls/enabledev.go index 092701a..35c8e45 100644 --- a/system/tls/enabledev.go +++ b/system/tls/enabledev.go @@ -27,5 +27,8 @@ func EnableDev() { key := filepath.Join(vendorPath, "devcerts", "key.pem") go log.Fatalln(http.ListenAndServeTLS(":10443", cert, key, nil)) - fmt.Println("Server listening on :10443 for HTTPS requests... [DEV]") + 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") } |