summaryrefslogtreecommitdiff
path: root/cmd/ponzu/main.go
diff options
context:
space:
mode:
authorSteve <nilslice@gmail.com>2017-01-04 15:32:09 -0800
committerGitHub <noreply@github.com>2017-01-04 15:32:09 -0800
commitad96d5fa100615ada7ae8f06e75088f9297122fd (patch)
tree24104364ac734e1ebb3e98eb516faa43e092c8ef /cmd/ponzu/main.go
parentbb74e495aa84881dd8e574b369d02dda7aaa3cc6 (diff)
parentdb79b75e35d28c5b0e2f07d77fc974e443781330 (diff)
Merge pull request #28 from zshipko/master
Fixed self-signed certificates when running a dev server
Diffstat (limited to 'cmd/ponzu/main.go')
-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")