Skip to content

Commit

Permalink
Merge pull request #15 from dotindustries/fix/add_default_reverse_pro…
Browse files Browse the repository at this point in the history
…xy_address

fix: add default reverse proxy address
  • Loading branch information
nadilas authored Mar 29, 2024
2 parents 03b7677 + e0da3bc commit e1f8ad0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cli/cmd/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ func readGlobalConfig() {
}

var defaultConfig = &config{
Debug: false,
BackendAddr: "http://localhost:8000",
AuthEnabled: false,
Debug: false,
BackendAddr: "http://localhost:8000",
AuthEnabled: false,
ReverseProxyAddr: "http://localhost:9000",
}

// configInit must be called from the packages' init() func
Expand Down

0 comments on commit e1f8ad0

Please sign in to comment.