Change default http port to 8081 to not conflict with rethinkdb web ui

This commit is contained in:
Dan Sosedoff 2015-04-28 09:49:36 -05:00
parent 08a70baf3f
commit 637e7a4e24

View File

@ -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"`