bug fix, key should be of type string, not int
This commit is contained in:
parent
e68c3176aa
commit
c4c034efa8
@ -32,7 +32,7 @@ const branches ={
|
|||||||
"node_port": 8080,
|
"node_port": 8080,
|
||||||
"database": "./app-db-dev.db",
|
"database": "./app-db-dev.db",
|
||||||
"ssl": false,
|
"ssl": false,
|
||||||
"key": Math.floor((Math.random() * Math.pow(10,20)) ), //Dynamic key on start for security
|
"key": Math.floor((Math.random() * Math.pow(10,20)) ).toString(), //Dynamic key on start for security
|
||||||
"countries": ['US', 'CA', 'N/A'],
|
"countries": ['US', 'CA', 'N/A'],
|
||||||
"algorithm" : 'aes-256-cbc',
|
"algorithm" : 'aes-256-cbc',
|
||||||
"root": "/srv/webserver",
|
"root": "/srv/webserver",
|
||||||
|
Reference in New Issue
Block a user