fix(routingd) update port and servers
Brian Tiger Chow committed
Feb 6, 2015 at 10:44 UTC
974c4842fa746af6f8fa714443f748d9d8324dc1
2 files changed
+3
-3
cmd/ipfs_routingd/main.go
+1
-1
@@ -20,7 +20,7 @@ import (
20
)
21
22
var (
23
- host = flag.String("host", "/ip4/0.0.0.0/tcp/8080", "override the HTTP host listening address")
23
+ host = flag.String("host", "/ip4/0.0.0.0/tcp/4001", "override the host listening address")
24
s3bucket = flag.String("aws-bucket", "", "S3 bucket for routing datastore")
25
s3region = flag.String("aws-region", aws.USWest2.Name, "S3 region")
26
nBitsForKeypair = flag.Int("b", 1024, "number of bits for keypair (if repo is uninitialized)")
repo/config/gcr_servers.go
+2
-2
@@ -9,8 +9,8 @@ type GCR struct {
9
}
10
11
var DefaultGCRServers = []string{
12
- "/ip4/104.236.70.34/tcp/4001/ipfs/QmaWJw5mcWkCThPtC7hVq28e3WbwLHnWF8HbMNJrRDybE4",
13
- "/ip4/128.199.72.111/tcp/4001/ipfs/Qmd2cSiZUt7vhiuTmqBB7XWbkuFR8KMLiEuQssjyNXyaZT",
12
+ "/ip4/107.170.212.195/tcp/4001/ipfs/QmVy5xh7sYKyQxHG4ZatHj9cCu1H5PR1LySKeTfLdJxp1b",
13
+ "/ip4/107.170.215.87/tcp/4001/ipfs/QmZDYP9GBjkAmZrS5usSzPnLf41haq6jJhJDmWgnSM4zvW",
14
}
15
16
func initGCR() (*GCR, error) {