23 lines
482 B
JSON
23 lines
482 B
JSON
{
|
|
/* The ID of the node instance */
|
|
"nodeId" : 1,
|
|
|
|
/* The port to listen on */
|
|
"port" : 4500, /* 443, 4000 */
|
|
|
|
/* Allow anonymous connections */
|
|
"anonymous" : true
|
|
|
|
/* Redis configuration
|
|
"redis" : {
|
|
"host" : "localhost",
|
|
"port" : 6379
|
|
} */
|
|
|
|
/* SSL configuration
|
|
"ssl" : {
|
|
"enabled" : true,
|
|
"key" : "D:\\dev\\projects\\Sourcey\\shared\\ssl\\symple.key",
|
|
"cert" : "D:\\dev\\projects\\Sourcey\\shared\\ssl\\symple.crt"
|
|
}*/
|
|
}
|