forked from hd-auth/auth.sigidli.com
35 lines
1.0 KiB
JSON
35 lines
1.0 KiB
JSON
{
|
|
"bip32": {
|
|
"serverExtendedPrivateKey": "xprivgeneratebyyourservicespecificallytorunonthisserver",
|
|
"serverExtendedPrivateKeyDerivationPath": "a/123/456/789", // Doesn't support hardned keys?
|
|
"serviceAuthenticatingExtendedPublicKey": "xpubfortheservicewhichownsthisandwhichclientscanusetoauthenticateserviceownedresources"
|
|
},
|
|
"bcrypt" : {
|
|
"salt" : 9
|
|
},
|
|
"database" : {
|
|
"dialect" : "sqlite",
|
|
"host" : "localhost",
|
|
"database" : "databases",
|
|
"username" : "databases",
|
|
"password" : "sdaabasfd",
|
|
"storage" : "database.sqlite",
|
|
"define": {
|
|
"paranoid": true
|
|
},
|
|
"logging": false
|
|
// Encryption on database...
|
|
// "dialectOptions": {
|
|
// "encrypt": true
|
|
// }
|
|
},
|
|
"server" : {
|
|
"secret" : "don't forget to keep your secrets secret",
|
|
"port" : 8765,
|
|
"cookie": {
|
|
// "domain": ".sigidli.com"
|
|
},
|
|
"compiled-render": false,
|
|
"domain": "example.org"
|
|
}
|
|
} |