-
Notifications
You must be signed in to change notification settings - Fork 216
config_review
Snipa22 edited this page Jul 28, 2017
·
3 revisions
Pool Configuration:
- "hostname": "mine.xmrpool.net", # Mining pool hostname to connect to. - MUST BE UNIQUE
- "port": 7778, # Port on the mining pool to connect to.
- "ssl": false, # Set true if the port uses SSL
- "allowSelfSignedSSL": false, # Set true if the SSL port is self-signed
- "share": 20, # % of hashrate to route to the pool
- "username": "46XWBqE1iwsVxSDP1qDrxhE1XvsZV6eALG5LwnoMdjbT4GPdy2bZTb99kagzxp2MMjUamTYZ4WgvZdFadvMimTjvR6Gv8hL", # Payout address sent to the pool.
- "password": "proxy:totally.valid@snipanet.com", # Password to be sent to the pool.
- "keepAlive": true, # Enable keepalive, this depends on the pool, should usually be true
- "coin": "xmr", # Coin to mine, should match the name of a file in lib/ without the js
- "default": true # Default pools are used as the pools that miners initially route their hashes to until they're load-balanced.
Listening Port Configuration:
- "port": 8080, # What port do you want your miners to connect to?
- "ssl": false, # Should the port be SSL enabled?
- "diff": 5000, # What is the starting difficulty for the port. This should nominally be the average h/s of your miner * the shareTargetTime setting.
- "coin": "xmr" # Coin to mine, should match the name of a file in lib/ without the js
Other Settings:
- "bindAddress": "0.0.0.0", # IP address to listen on for connections
- "developerShare": 1, # % of hashes to send to the proxy developer/coin integrator
- "daemonAddress": "127.0.0.1:18081", # Not in use.
- "coinSettings": {
- "xmr":{ # Should be set to the name of the coin to mine. Pool does support multiple on a single instance.
-
"minDiff": 100, # Minimum difficulty. This should be set accordingly to your slowest miners. -
"maxDiff": 300000, # Maximum difficulty, this should be set accordingly to your fastest miners. -
"shareTargetTime": 15 # The average time between when the proxy should be receiving shares from miners. Effects VarDiff. - } }