Skip to content

Commit

Permalink
do not use localhost (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-korotya authored Sep 13, 2024
1 parent 4015ea5 commit 58bed8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func (c *KVstring) Decode(value string) error {
type Config struct {
SupportedIssuers KVstring `envconfig:"SUPPORTED_ISSUERS" required:"true"`
IPFSGWURL string `envconfig:"IPFS_GATEWAY_URL" default:"https://ipfs.io"`
ServerHost string `envconfig:"SERVER_HOST" default:"localhost:8002"`
ServerHost string `envconfig:"SERVER_HOST" default:":8002"`
HTTPConfigPath string `envconfig:"HTTP_CONFIG_PATH" default:"config.yaml"`
SupportedRPC KVstring `envconfig:"SUPPORTED_RPC" required:"true"`
SupportedStateContracts KVstring `envconfig:"SUPPORTED_STATE_CONTRACTS" required:"true"`
Expand Down

0 comments on commit 58bed8d

Please sign in to comment.