Guest User

Untitled

a guest
Aug 14th, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1. HTTP_PORT=11626
  2. PUBLIC_HTTP_PORT=true
  3. LOG_FILE_PATH=""
  4.  
  5. DATABASE="postgresql://dbname=core host=localhost user=stellar password=xxxx"
  6. NETWORK_PASSPHRASE="Public Global Stellar Network ; September 2015"
  7. CATCHUP_COMPLETE=true
  8. # MAX_CONCURRENT_SUBPROCESSES (integer) default 16
  9. # History catchup can potentialy spawn a bunch of sub-processes.
  10. # This limits the number that will be active at a time.
  11. MAX_CONCURRENT_SUBPROCESSES=24
  12.  
  13. # TARGET_PEER_CONNECTIONS (Integer) default 8
  14. # This controls how aggressively the server will connect to other peers.
  15. # It will send outbound connection attempts until it is at this
  16. # number of peer connections.
  17. TARGET_PEER_CONNECTIONS=8
  18.  
  19. NODE_NAMES=[
  20. "GAOO3LWBC4XF6VWRP5ESJ6IBHAISVJMSBTALHOQM2EZG7Q477UWA6L7U eno",
  21. "GAXP5DW4CVCW2BJNPFGTWCEGZTJKTNWFQQBE5SCWNJIJ54BOHR3WQC3W moni",
  22. "GBFZFQRGOPQC5OEAWO76NOY6LBRLUNH4I5QYPUYAK53QSQWVTQ2D4FT5 dzham",
  23. "GDXWQCSKVYAJSUGR2HBYVFVR7NA7YWYSYK3XYKKFO553OQGOHAUP2PX2 jianing",
  24. "GCJCSMSPIWKKPR7WEPIQG63PDF7JGGEENRC33OKVBSPUDIRL6ZZ5M7OO tempo.eu.com",
  25. "GCCW4H2DKAC7YYW62H3ZBDRRE5KXRLYLI4T5QOSO6EAMUOE37ICSKKRJ sparrow_tw",
  26. "GD5DJQDDBKGAYNEAXU562HYGOOSYAEOO6AS53PZXBOZGCP5M2OPGMZV3 fuxi.lab",
  27. "GBGGNBZVYNMVLCWNQRO7ASU6XX2MRPITAGLASRWOWLB4ZIIPHMGNMC4I huang.lab",
  28. "GDPJ4DPPFEIP2YTSQNOKT7NMLPKU2FFVOEIJMG36RCMBWBUR4GTXLL57 nezha.lab",
  29. "GCDLFPQ76D6YUSCUECLKI3AFEVXFWVRY2RZH2YQNYII35FDECWUGV24T SnT.Lux",
  30. "GBAR4OY6T6M4P344IF5II5DNWHVUJU7OLQPSMG2FWVJAFF642BX5E3GB telindus",
  31. # non validating
  32. "GCGB2S2KGYARPVIA37HYZXVRM2YZUEXA6S33ZU5BUDC6THSB62LZSTYH sdf_watcher1",
  33. "GCM6QMP3DLRPTAZW2UZPCPX2LF3SXWXKPMP3GKFZBDSF3QZGV2G5QSTK sdf_watcher2",
  34. "GABMKJM6I25XI4K7U6XWMULOUQIQ27BCTMLS6BYYSOWKTBUXVRJSXHYQ sdf_watcher3",
  35. # seem down
  36. "GB6REF5GOGGSEHZ3L2YK6K4T4KX3YDMWHDCPMV7MZJDLHBDNZXEPRBGM donovan",
  37. "GBGR22MRCIVW2UZHFXMY5UIBJGPYABPQXQ5GGMNCSUM2KHE3N6CNH6G5 nelisky1",
  38. "GA2DE5AQF32LU5OZ5OKAFGPA2DLW4H6JHPGYJUVTNS3W7N2YZCTQFFV6 nelisky2",
  39. "GDJ73EX25GGUVMUBCK6DPSTJLYP3IC7I3H2URLXJQ5YP56BW756OUHIG w00kie",
  40. "GAM7A32QZF5PJASRSGVFPAB36WWTHCBHO5CHG3WUFTUQPT7NZX3ONJU4 ptarasov"
  41. ]
  42.  
  43. # NODE_IS_VALIDATOR (boolean) default false.
  44. # Only nodes that want to participate in SCP should set NODE_IS_VALIDATOR=true.
  45. # Most instances should operate in observer mode with NODE_IS_VALIDATOR=false.
  46. # See QUORUM_SET below.
  47. NODE_IS_VALIDATOR=false
  48.  
  49. KNOWN_PEERS=[
  50. "core-live-a.stellar.org:11625",
  51. "core-live-b.stellar.org:11625",
  52. "core-live-c.stellar.org:11625",
  53. "confucius.strllar.org",
  54. "stellar1.bitventure.co",
  55. "stellar.256kw.com"]
  56.  
  57.  
  58.  
  59. [QUORUM_SET]
  60. VALIDATORS=[
  61. "$sdf_watcher1","$eno","$tempo.eu.com","$sdf_watcher2","$sdf_watcher3"
  62. [HISTORY.cache]
  63. get="cp /opt/stellar/history-cache/{0} {1}"
  64.  
  65. # Stellar.org history store
  66. [HISTORY.stellar]
  67. get="curl http://history.stellar.org/{0} -o {1}"
  68. # Stellar.org history store
  69. [HISTORY.sdf1]
  70. get="curl -sf http://history.stellar.org/prd/core-live/core_live_001/{0} -o {1}"
  71.  
  72. [HISTORY.sdf2]
  73. get="curl -sf http://history.stellar.org/prd/core-live/core_live_002/{0} -o {1}"
  74.  
  75. [HISTORY.sdf3]
  76. get="curl -sf http://history.stellar.org/prd/core-live/core_live_003/{0} -o {1}"
Add Comment
Please, Sign In to add comment