diff --git a/server/asset.go b/server/asset.go index 8a9ad55..959f0ac 100644 --- a/server/asset.go +++ b/server/asset.go @@ -200,7 +200,7 @@ func staticJsGottyBundleJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/js/gotty-bundle.js", size: 665001, mode: os.FileMode(420), modTime: time.Unix(1646016572, 0)} + info := bindataFileInfo{name: "static/js/gotty-bundle.js", size: 665001, mode: os.FileMode(420), modTime: time.Unix(1646018728, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -220,7 +220,7 @@ func staticJsGottyBundleJsLicenseTxt() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/js/gotty-bundle.js.LICENSE.txt", size: 5807, mode: os.FileMode(420), modTime: time.Unix(1646016453, 0)} + info := bindataFileInfo{name: "static/js/gotty-bundle.js.LICENSE.txt", size: 5807, mode: os.FileMode(420), modTime: time.Unix(1646018728, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -240,7 +240,7 @@ func staticJsGottyBundleJsMap() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/js/gotty-bundle.js.map", size: 1784330, mode: os.FileMode(420), modTime: time.Unix(1646016759, 0)} + info := bindataFileInfo{name: "static/js/gotty-bundle.js.map", size: 1784330, mode: os.FileMode(420), modTime: time.Unix(1646018728, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/server/options.go b/server/options.go index 69b8203..8351019 100644 --- a/server/options.go +++ b/server/options.go @@ -5,7 +5,7 @@ import ( ) type Options struct { - Address string `hcl:"address" flagName:"address" flagSName:"a" flagDescribe:"IP address to listen" default:"0.0.0.0"` + Address string `hcl:"address" flagName:"address" flagSName:"a" flagDescribe:"IP address to listen" default:"localhost"` Port string `hcl:"port" flagName:"port" flagSName:"p" flagDescribe:"Port number to liten" default:"8080"` PermitWrite bool `hcl:"permit_write" flagName:"permit-write" flagSName:"w" flagDescribe:"Permit clients to write to the TTY (BE CAREFUL)" default:"false"` EnableBasicAuth bool `hcl:"enable_basic_auth" default:"false"`