From 637e7a4e2414b5c449e4aac6aa7252212fdaa145 Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Tue, 28 Apr 2015 09:49:36 -0500 Subject: [PATCH] Change default http port to 8081 to not conflict with rethinkdb web ui --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 1ec0e4b..84d0fb7 100644 --- a/main.go +++ b/main.go @@ -24,7 +24,7 @@ type Options struct { DbName string `long:"db" description:"Database name"` Ssl string `long:"ssl" description:"SSL option"` HttpHost string `long:"bind" description:"HTTP server host" default:"localhost"` - HttpPort uint `long:"listen" description:"HTTP server listen port" default:"8080"` + HttpPort uint `long:"listen" description:"HTTP server listen port" default:"8081"` AuthUser string `long:"auth-user" description:"HTTP basic auth user"` AuthPass string `long:"auth-pass" description:"HTTP basic auth password"` SkipOpen bool `short:"s" long:"skip-open" description:"Skip browser open on start"`