From 59c4fb135ae9a97014021b6b1a5ae43cb2441252 Mon Sep 17 00:00:00 2001 From: Marek Majkowski Date: Mon, 25 Nov 2013 07:47:35 -0800 Subject: [PATCH] Be consistent about port number, 8080 not 8000 --- redoctober.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redoctober.go b/redoctober.go index fe7c84f..e667385 100644 --- a/redoctober.go +++ b/redoctober.go @@ -154,7 +154,7 @@ func main() { var staticPath = flag.String("staticpath", "/tmp/index.html", "Path to the the static entry") var vaultPath = flag.String("vaultpath", "/tmp/tmpvault", "Path to the the disk vault") - var addr = flag.String("addr", "localhost:8000", "Server and port separated by :") + var addr = flag.String("addr", "localhost:8080", "Server and port separated by :") var certPath = flag.String("cert", "", "Path of TLS certificate in PEM format") var keyPath = flag.String("key", "", "Path of TLS private key in PEM format") var caPath = flag.String("ca", "", "Path of TLS CA for client authentication (optional)")