From 641bd27b77892273f5251fc73de741fefb851090 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ben=20Gr=C3=A4f?= Date: Mon, 16 Oct 2017 21:58:13 +0200 Subject: [PATCH] Added default cc server config --- src/config_cc.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/config_cc.json diff --git a/src/config_cc.json b/src/config_cc.json new file mode 100644 index 00000000..f90a738c --- /dev/null +++ b/src/config_cc.json @@ -0,0 +1,14 @@ +{ + "background": false, // true to run the miner in the background + "colors": true, // false to disable colored output + "log-file": null, // log all output to a file, example: "c:/some/path/xmrig.log" + "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 + "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 + } +}