|
8 | 8 | "0f02020202",
|
9 | 9 | "0f03020202"
|
10 | 10 | ],
|
| 11 | + // Limits the number of pending OFFER message at one time |
| 12 | + "maxOfferConcurrency": 3, |
11 | 13 | // If the seedList is empty, use this bridge to discover seeds
|
12 | 14 | // Following a transfer, also send an exchange report to this bridge
|
13 | 15 | "bridgeUri": "https://api.storj.io",
|
|
21 | 23 | // Port to bind for RPC server, make sure this is forwarded if behind a
|
22 | 24 | // NAT or firewall - otherwise Storj Share will try to punch out
|
23 | 25 | "rpcPort": 4000,
|
24 |
| - // doNotTraverseNat: false requires you to have an external ip address. |
| 26 | + // doNotTraverseNat: true requires you to have an external ip address. |
25 | 27 | // You can use a proxy to gain an external IP address.
|
26 |
| - // doNotTraverseNat: true Enables NAT traversal strategies |
| 28 | + // doNotTraverseNat: false Enables NAT traversal strategies |
27 | 29 | // first UPnP, then reverse HTTP tunnel
|
28 | 30 | // if that fails. Disable if you are public or using dynamic DNS
|
29 |
| - "doNotTraverseNat": true, |
| 31 | + "doNotTraverseNat": false, |
30 | 32 | // Maximum number of tunnels to provide to the network
|
31 | 33 | // Tunnels help nodes with restrictive network configurations participate
|
32 | 34 | "maxTunnels": 3,
|
|
43 | 45 | "times": 3,
|
44 | 46 | "interval": 5000
|
45 | 47 | },
|
| 48 | + // Temporarily stop sending OFFER messages if more than this number of shard |
| 49 | + // transfers are active |
| 50 | + "offerBackoffLimit": 4, |
46 | 51 | // ECDSA private key for your network identity, your Node ID is derived from
|
47 | 52 | // this and it is used to sign and verify messages
|
48 | 53 | "networkPrivateKey": "",
|
|
0 commit comments