Vaginaldo

Untitled

Sep 8th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.90 KB | None | 0 0
  1. {
  2.   // Set the STORJ/ERC20 wallet address for receiving contract payments
  3.   "paymentAddress": "0x557319eeaab577171d873ea7e01ad12f46a26ed1",
  4.   // Subscribes to the given contract topics
  5.   // See https://storj.github.io/core/tutorial-contract-topics.html
  6.   "opcodeSubscriptions": [
  7.     "0f01020202",
  8.     "0f02020202",
  9.     "0f03020202"
  10.   ],
  11.   // Limits the number of pending OFFER message at one time
  12.   "maxOfferConcurrency": 3,
  13.   // If the seedList is empty, use this bridge to discover seeds
  14.   // Following a transfer, also send an exchange report to this bridge
  15.   "bridgeUri": "https://api.storj.io",
  16.   // Known preferred seeds in form of a storj URI
  17.   // Example: "storj://[ip.or.hostname]:[port]/[nodeid]"
  18.   "seedList": [],
  19.   // Interface to bind RPC server, use 0.0.0.0 for all interfaces or if you
  20.   // have a public address, use that, else leave 127.0.0.1 and Storj Share
  21.   // will try to determine your address
  22.   "rpcAddress": "tabitah.h2on.org",
  23.   // Port to bind for RPC server, make sure this is forwarded if behind a
  24.   // NAT or firewall - otherwise Storj Share will try to punch out
  25.   "rpcPort": 4008,
  26.   // Enables NAT traversal strategies, first UPnP, then reverse HTTP tunnel
  27.   // if that fails. Disable if you are public or using dynamic DNS
  28.   "doNotTraverseNat": false,
  29.   // Maximum number of tunnels to provide to the network
  30.   // Tunnels help nodes with restrictive network configurations participate
  31.   "maxTunnels": 3,
  32.   // Maximum number of concurrent connections to allow
  33.   "maxConnections": 150,
  34.   // If providing tunnels, the starting and ending port range to open for
  35.   // them
  36.   "tunnelGatewayRange": {
  37.     "min": 4009,
  38.     "max": 4011
  39.   },
  40.   // Number of times to retry joining the network and the wait time between
  41.   "joinRetry": {
  42.     "times": 3,
  43.     "interval": 5000
  44.   },
  45.   // Temporarily stop sending OFFER messages if more than this number of shard
  46.   // transfers are active
  47.   "offerBackoffLimit": 4,
  48.   // ECDSA private key for your network identity, your Node ID is derived from
  49.   // this and it is used to sign and verify messages
  50.   "networkPrivateKey": "afreq5553pucattg3w54354245gccxcccc",
  51.   // Determines how much detail is shown in the log:
  52.   // 4 - DEBUG | 3 - INFO | 2 - WARN | 1 - ERROR | 0 - SILENT
  53.   "loggerVerbosity": 3,
  54.   // Path to write the log file to disk, leave empty to default to:
  55.   // $HOME/.config/storjshare/logs/[nodeid]_date.log
  56.   "loggerOutputFile": "/home/tabitao/.config/storjshare/logs/agagetgwfgegw43444tssafa.log",
  57.   // Directory path to store contracts and shards
  58.   "storagePath": "/home/tabitao/STORJ/Storj_3586GB/",
  59.   // Amount of space to lease to the network, as human readable string
  60.   // Valid units are B, KB, MB, GB, TB
  61.   "storageAllocation": "3586GB",
  62.   // Periodically report your used and free capacity to Storj Labs to improve
  63.   // the network - no personally identifiable information is sent
  64.   "enableTelemetryReporting": true
  65. }
Add Comment
Please, Sign In to add comment