Skip to content

Commit d4b09db

Browse files
authored
Merge pull request #153 from smacker/hotfix/fix_host
Hotfix: incorrect default host
2 parents 1b6eab7 + 757aa6d commit d4b09db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/server/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ var version = "dev"
1818

1919
type appConfig struct {
2020
Env string `envconfig:"ENV" default:"production"`
21-
Host string `envconfig:"HOST" default:"127.0.0.1"`
21+
Host string `envconfig:"HOST" default:"0.0.0.0"`
2222
Port int `envconfig:"PORT" default:"8080"`
2323
ServerURL string `envconfig:"SERVER_URL"`
2424
UIDomain string `envconfig:"UI_DOMAIN"`

0 commit comments

Comments
 (0)