@cryptotaxi247 / kubo / commits / 57814a36b

go-ipfs-config: repo/config: Added default gateway address to initial config

Matt Bell committed Feb 2, 2015 at 17:45 UTC 57814a36bfcc20204c6c6c5182c44100c8977c4b
1 file changed +2 -1
config/init.go
+2 -1
@@ -35,7 +35,8 @@ func Init(out io.Writer, nBitsForKeypair int) (*Config, error) {
35 "/ip4/0.0.0.0/tcp/4001",
36 // "/ip4/0.0.0.0/udp/4002/utp", // disabled for now.
37 },
38 - API: "/ip4/127.0.0.1/tcp/5001",
38 + API: "/ip4/127.0.0.1/tcp/5001",
39 + Gateway: "/ip4/127.0.0.1/tcp/8080",
40 },
41
42 Bootstrap: BootstrapPeerStrings(bootstrapPeers),