summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorZach Shipko <zachshipko@gmail.com>2017-01-04 15:16:27 -0800
committerZach Shipko <zachshipko@gmail.com>2017-01-04 15:16:27 -0800
commitdb79b75e35d28c5b0e2f07d77fc974e443781330 (patch)
tree24104364ac734e1ebb3e98eb516faa43e092c8ef /cmd
parentbb74e495aa84881dd8e574b369d02dda7aaa3cc6 (diff)
Fixed self-signed certificates when running a dev server
Diffstat (limited to 'cmd')
-rw-r--r--cmd/ponzu/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/ponzu/main.go b/cmd/ponzu/main.go
index b122f7f..6ac6dad 100644
--- a/cmd/ponzu/main.go
+++ b/cmd/ponzu/main.go
@@ -185,7 +185,7 @@ func main() {
fmt.Println("Enabling self-signed HTTPS... [DEV]")
go tls.EnableDev()
- fmt.Printf("Server listening on https://localhost:%s for requests... [DEV]\n", db.ConfigCache("https_port"))
+ 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")