Skip to content

Commit

Permalink
set UI default listen address to localhost (#1476)
Browse files Browse the repository at this point in the history
  • Loading branch information
LexLuthr authored May 30, 2023
1 parent 592a701 commit 9e05810
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion node/config/def.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func DefaultBoost() *Boost {
},

Graphql: GraphqlConfig{
ListenAddress: "0.0.0.0",
ListenAddress: "127.0.0.1",
Port: 8080,
},

Expand Down
2 changes: 1 addition & 1 deletion node/config/doc_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node/config/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ type WalletsConfig struct {
}

type GraphqlConfig struct {
// The ip address the GraphQL server will bind to. Default: 0.0.0.0
// The ip address the GraphQL server will bind to. Default: 127.0.0.1
ListenAddress string
// The port that the graphql server listens on
Port uint64
Expand Down

0 comments on commit 9e05810

Please sign in to comment.