Onionr/onionr/static-data/default_config.json
Kevin Froman 58aa8ce1cc
* Increased heartbeat timer
* Tried to fix bug where wrong node was being reported as being
announced to
* Refactored core somewhat
- Removed data dir encryption (TODO: just encrypt pub/priv key pair)
- Removed simplecrypt dependency
2018-10-30 17:22:06 -05:00

71 lines
1.2 KiB
JSON

{
"general" : {
"dev_mode": true,
"display_header" : true,
"minimum_block_pow": 5,
"minimum_send_pow": 5,
"direct_connect" : {
"respond" : true,
"execute_callbacks" : true
}
},
"www" : {
"public" : {
"run" : true
},
"private" : {
"run" : true
},
"ui" : {
"run" : true,
"private" : true
}
},
"client" : {
},
"log": {
"file": {
"output": false,
"path": "data/output.log"
},
"console": {
"output": true,
"color": true
}
},
"tor" : {
"v3onions": false
},
"i2p":{
"host": false,
"connect": true,
"ownAddr": ""
},
"allocations":{
"disk": 10000000000,
"netTotal": 1000000000,
"blockCache": 5000000,
"blockCacheTotal": 50000000
},
"peers":{
"minimumScore": -100,
"maxStoredPeers": 5000,
"maxConnect": 10
},
"timers":{
"lookupBlocks": 25,
"getBlocks": 30
}
}