Guest User

Untitled

a guest
Dec 27th, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. # What port stellar-core listens for commands on. This is for Horizon server.
  2. HTTP_PORT=11626
  3.  
  4. PUBLIC_HTTP_PORT=false
  5.  
  6. # If it is true, It prevents you from trying to connect to other peers
  7. RUN_STANDALONE=false
  8.  
  9. # A phrase for your network. All nodes should have the same network phrase.
  10. NETWORK_PASSPHRASE="Standalone Network ; DEC 2018"
  11.  
  12. # The seed used for generating the public key this node will be identified within SCP.
  13. NODE_SEED="SCKWWAH6W3AFRGZZGAWFLC5FGKUEB7YWOHAQY5XSWO7R3HTPU4GQ3Q4F self"
  14.  
  15. # Only nodes that want to participate in SCP should set NODE_IS_VALIDATOR=true.
  16. # Most instances should operate in observer mode with NODE_IS_VALIDATOR=false.
  17. NODE_IS_VALIDATOR=true
  18.  
  19. # Comma separated peers list
  20. KNOWN_PEERS=["127.0.0.1:11635"]
  21.  
  22. # Postgres DB URL
  23. DATABASE="postgresql://dbname=stellar_node01_db host=localhost user=abc password=abc"
  24.  
  25. # The port other instances of stellar-core can connect to you on.
  26. PEER_PORT=11625
  27.  
  28. # Log level setup
  29. COMMANDS=["ll?level=trace"]
  30.  
  31. FAILURE_SAFETY=0
  32. UNSAFE_QUORUM=true
  33.  
  34. #The public keys of the Stellar servers
  35. [QUORUM_SET]
  36. THRESHOLD_PERCENT=100
  37.  
  38. # comma sepearted validator list
  39. VALIDATORS=["$self"]
  40.  
  41. [HISTORY.vs]
  42. get="cp /tmp/stellar-core/history/vs/{0} {1}"
  43. put="cp {0} /tmp/stellar-core/history/vs/{1}"
  44. mkdir="mkdir -p /tmp/stellar-core/history/vs/{0}"
  45.  
  46. # What port stellar-core listens for commands on. This is for Horizon server.
  47. HTTP_PORT=11636
  48.  
  49. PUBLIC_HTTP_PORT=false
  50.  
  51. # If it is true, It prevents you from trying to connect to other peers
  52. RUN_STANDALONE=false
  53.  
  54. # A phrase for your network. All nodes should have the same network phrase.
  55. NETWORK_PASSPHRASE="Standalone Network ; DEC 2018"
  56.  
  57. # The seed used for generating the public key this node will be identified within SCP.
  58. NODE_SEED="SCKWWAH6W3AFRGZZGAWFLC5FGKUEB7YWOHAQY5XSWO7R3HTPU4GQ3Q4F self"
  59.  
  60. # Only nodes that want to participate in SCP should set NODE_IS_VALIDATOR=true.
  61. # Most instances should operate in observer mode with NODE_IS_VALIDATOR=false.
  62. NODE_IS_VALIDATOR=true
  63.  
  64. # Comma separated peers list
  65. KNOWN_PEERS=["127.0.0.1:11625"]
  66.  
  67. # Postgres DB URL
  68. DATABASE="postgresql://dbname=stellar_node02_db host=localhost user=abc password=abc"
  69.  
  70. # The port other instances of stellar-core can connect to you on.
  71. PEER_PORT=11635
  72.  
  73. # Log level setup
  74. COMMANDS=["ll?level=trace"]
  75.  
  76. FAILURE_SAFETY=0
  77. UNSAFE_QUORUM=true
  78.  
  79. #The public keys of the Stellar servers
  80. [QUORUM_SET]
  81. THRESHOLD_PERCENT=100
  82.  
  83. # comma sepearted validator list
  84. VALIDATORS=["$self"]
  85.  
  86. [HISTORY.vs]
  87. get="cp /tmp/stellar-core/history/vs/{0} {1}"
  88. put="cp {0} /tmp/stellar-core/history/vs/{1}"
  89. mkdir="mkdir -p /tmp/stellar-core/history/vs/{0}"
Add Comment
Please, Sign In to add comment