Update config examples with TLS

This commit is contained in:
aayanl 2017-02-13 21:38:31 -05:00
parent 4aacec6004
commit 9e2253fcdc
4 changed files with 26 additions and 2 deletions

View File

@ -54,7 +54,7 @@ Follow the build/install instructions for your coin daemon. Your coin.conf file
daemon=1
rpcuser=zclassicrpc
rpcpassword=securepassword
rpcport=19332
rpcport=8232
```
For redundancy, its recommended to have at least two daemon instances running in case one drops out-of-sync or offline,
all instances will be polled for block/transaction updates and be used for submitting blocks. Creating a backup daemon
@ -102,7 +102,7 @@ node [path to cli.js] [coin name in config] [block hash symbol]
```
Example: inside `zclassic.conf` add the line
```
blocknotify=node /home/z-nomp/scripts/cli.js blocknotify zclassic %s
blocknotify=node /home/user/z-nomp/scripts/cli.js blocknotify zclassic %s
```
Alternatively, you can use a more efficient block notify script written in pure C. Build and usage instructions

View File

@ -30,9 +30,17 @@
}
},
"tlsOptions": {
"enabled": false,
"serverKey":"",
"serverCert":"",
"ca":""
},
"ports": {
"3032": {
"diff": 0.05,
"tls": false,
"varDiff": {
"minDiff": 0.04,
"maxDiff": 16,

View File

@ -31,9 +31,17 @@
}
},
"tlsOptions": {
"enabled": false,
"serverKey":"",
"serverCert":"",
"ca":""
},
"ports": {
"3032": {
"diff": 0.05,
"tls": false,
"varDiff": {
"minDiff": 0.04,
"maxDiff": 16,

View File

@ -16,6 +16,13 @@
"rewardRecipients": {
},
"tlsOptions": {
"enabled": false,
"serverKey":"",
"serverCert":"",
"ca":""
},
"paymentProcessing": {
"enabled": true,
"paymentInterval": 20,
@ -30,6 +37,7 @@
"ports": {
"3032": {
"tls":false,
"diff": 0.05,
"varDiff": {
"minDiff": 0.04,