Advertisement
buzzkillb

main dir config.json

Jun 20th, 2018
1,142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.89 KB | None | 0 0
  1. // Main directory config.json
  2. {
  3. "logLevel": "debug",
  4. "logColors": true,
  5.  
  6. "cliPort": 17117,
  7.  
  8. "clustering": {
  9. "enabled": true,
  10. "forks": "auto"
  11. },
  12.  
  13. "defaultPoolConfigs": {
  14. "blockRefreshInterval": 1000,
  15. "jobRebroadcastTimeout": 55,
  16. "connectionTimeout": 600,
  17. "emitInvalidBlockHashes": false,
  18. "validateWorkerUsername": true,
  19. "tcpProxyProtocol": false,
  20. "banning": {
  21. "enabled": true,
  22. "time": 600,
  23. "invalidPercent": 50,
  24. "checkThreshold": 500,
  25. "purgeInterval": 300
  26. },
  27. "redis": {
  28. "host": "127.0.0.1",
  29. "port": 6379
  30. }
  31. },
  32.  
  33. "website": {
  34. "enabled": true,
  35. "host": "YOURVPSIP",
  36. "port": 8080,
  37. "stratumHost": "YOURVPSIP",
  38. "stats": {
  39. "updateInterval": 60,
  40. "historicalRetention": 43200,
  41. "hashrateWindow": 300
  42. },
  43. "adminCenter": {
  44. "enabled": true,
  45. "password": "SOMEPASSWORD"
  46. }
  47. },
  48.  
  49. "redis": {
  50. "host": "127.0.0.1",
  51. "port": 6379
  52. },
  53.  
  54. "switching": {
  55. "switch1": {
  56. "enabled": false,
  57. "algorithm": "sha256",
  58. "ports": {
  59. "3333": {
  60. "diff": 10,
  61. "varDiff": {
  62. "minDiff": 16,
  63. "maxDiff": 512,
  64. "targetTime": 15,
  65. "retargetTime": 90,
  66. "variancePercent": 30
  67. }
  68. }
  69. }
  70. },
  71. "switch2": {
  72. "enabled": false,
  73. "algorithm": "scrypt",
  74. "ports": {
  75. "4444": {
  76. "diff": 10,
  77. "varDiff": {
  78. "minDiff": 16,
  79. "maxDiff": 512,
  80. "targetTime": 15,
  81. "retargetTime": 90,
  82. "variancePercent": 30
  83. }
  84. }
  85. }
  86. },
  87. "switch3": {
  88. "enabled": false,
  89. "algorithm": "x11",
  90. "ports": {
  91. "5555": {
  92. "diff": 0.001,
  93. "varDiff": {
  94. "minDiff": 0.001,
  95. "maxDiff": 1,
  96. "targetTime": 15,
  97. "retargetTime": 60,
  98. "variancePercent": 30
  99. }
  100. }
  101. }
  102. }
  103. },
  104.  
  105. "profitSwitch": {
  106. "enabled": false,
  107. "updateInterval": 600,
  108. "depth": 0.90,
  109. "usePoloniex": true,
  110. "useCryptsy": true,
  111. "useMintpal": true,
  112. "useBittrex": true
  113. }
  114. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement