Added howto/notes doc and new default configs

This commit is contained in:
Ben Gräf 2017-10-20 21:18:36 +02:00
parent 4be1a6e1b2
commit 9e92a84405
3 changed files with 170 additions and 9 deletions

View file

@ -29,8 +29,8 @@
"worker-id": null // custom worker-id for API
},
"cc-client": {
"url": "localhost:3344", // url of the CC Server
"access-token": null, // access token for CC Server
"worker-id": null // custom worker-id for CC Server
"url": "localhost:3344", // url of the CC Server (ip:port)
"access-token": null, // access token for CC Server (has to be the same in config_cc.json)
"worker-id": null // custom worker-id for CC Server (otherwise hostname is used)
}
}
}

View file

@ -1,14 +1,14 @@
{
"background": false, // true to run the miner in the background
"background": false, // true to run the cc-server in the background (no console)
"colors": true, // false to disable colored output
"log-file": null, // log all output to a file, example: "c:/some/path/xmrig.log"
"log-file": null, // log all output to a file
"syslog": false, // use system log for output messages
"cc-server": {
"port": 3344, // port the CC Server will listens on
"access-token": null, // access token for CC Clients
"access-token": null, // access token for CC Clients (should be set!!!)
"user": "admin", // admin user for access CC Dashboard
"pass": "pass", // admin pass for access CC Dashboard
"client-config-folder" : null, // folder which contains the client-config files
"custom-dashboard" : null // alternative dashboard html file
"client-config-folder" : null, // folder which contains the client-config files (null=current)
"custom-dashboard" : "index.html" // dashboard html file
}
}