Last active
July 25, 2018 09:23
-
-
Save thomasklemm/dd3a8909ed01fd1ffec4b77e00ce1e67 to your computer and use it in GitHub Desktop.
Stellar Core Config for Complete Catchup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HTTP_PORT=11626 | |
PUBLIC_HTTP_PORT=true | |
LOG_FILE_PATH="" | |
DATABASE="postgresql://dbname=core host=localhost user=stellar password=__POSTGRES_PASSWORD__" | |
NETWORK_PASSPHRASE="Public Global Stellar Network ; September 2015" | |
CATCHUP_COMPLETE=true | |
MAX_CONCURRENT_SUBPROCESSES=32 | |
AUTOMATIC_MAINTENANCE_PERIOD=0 | |
AUTOMATIC_MAINTENANCE_COUNT=0 | |
NODE_NAMES=[ | |
"GCGB2S2KGYARPVIA37HYZXVRM2YZUEXA6S33ZU5BUDC6THSB62LZSTYH sdf_1", | |
"GCM6QMP3DLRPTAZW2UZPCPX2LF3SXWXKPMP3GKFZBDSF3QZGV2G5QSTK sdf_2", | |
"GABMKJM6I25XI4K7U6XWMULOUQIQ27BCTMLS6BYYSOWKTBUXVRJSXHYQ sdf_3", | |
"GCWJKM4EGTGJUVSWUJDPCQEOEP5LHSOFKSA4HALBTOO4T4H3HCHOM6UX keybase_1", | |
"GDCAQY2Q5VMMI4ZOX35GTL7X43LMP3RA5W4VCP6V2BB6IFOO76GACXZU lumenauts_1", | |
"GARBCBH4YSHUJLYEPKEPMVYZIJ3ZSQR3QCJ245CWGY64X72JLN4A6RSG ibm_us", | |
"GDHV7FL7JP6LUEWWYUOA4C3QAFQ4LZ6OHFBWFIL6IFIS3AOBI2DHV62F stronghold_eu" | |
] | |
KNOWN_PEERS=[ | |
"core-live-a.stellar.org:11625", | |
"core-live-b.stellar.org:11625", | |
"core-live-c.stellar.org:11625", | |
"stellar0.keybase.io", | |
"v1.stellar.smoove.net", | |
"us.stellar.ibm.com", | |
"validator3.stellar.stronghold.co" | |
] | |
[QUORUM_SET] | |
THRESHOLD_PERCENT=66 | |
VALIDATORS=[ | |
"$sdf_1", | |
"$sdf_2", | |
"$sdf_3", | |
"$keybase_1", | |
"$lumenauts_1", | |
"$ibm_us", | |
"$stronghold_eu" | |
] | |
[HISTORY.cache] | |
get="cp /opt/stellar/history-cache/{0} {1}" | |
# History stores | |
[HISTORY.stellar] | |
get="curl http://history.stellar.org/{0} -o {1}" | |
[HISTORY.sdf_1] | |
get="curl -sf http://history.stellar.org/prd/core-live/core_live_001/{0} -o {1}" | |
[HISTORY.sdf_2] | |
get="curl -sf http://history.stellar.org/prd/core-live/core_live_002/{0} -o {1}" | |
[HISTORY.sdf_3] | |
get="curl -sf http://history.stellar.org/prd/core-live/core_live_003/{0} -o {1}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment