Improved DbExpire in sample-config.json.
This commit is contained in:
parent
0969f713cb
commit
fb3023b0f4
6
db.js
6
db.js
|
@ -28,9 +28,9 @@
|
|||
module.exports.CreateDB = function (parent, func) {
|
||||
var obj = {};
|
||||
var Datastore = null;
|
||||
var expireEventsSeconds = (60 * 60 * 24 * 20); // By default, expire events after 20 days. (Seconds * Minutes * Hours * Days)
|
||||
var expirePowerEventsSeconds = (60 * 60 * 24 * 10); // By default, expire power events after 10 days. (Seconds * Minutes * Hours * Days)
|
||||
var expireServerStatsSeconds = (60 * 60 * 24 * 30); // By default, expire power events after 30 days. (Seconds * Minutes * Hours * Days)
|
||||
var expireEventsSeconds = (60 * 60 * 24 * 20); // By default, expire events after 20 days (1728000). (Seconds * Minutes * Hours * Days)
|
||||
var expirePowerEventsSeconds = (60 * 60 * 24 * 10); // By default, expire power events after 10 days (864000). (Seconds * Minutes * Hours * Days)
|
||||
var expireServerStatsSeconds = (60 * 60 * 24 * 30); // By default, expire power events after 30 days (2592000). (Seconds * Minutes * Hours * Days)
|
||||
const common = require('./common.js');
|
||||
obj.identifier = null;
|
||||
obj.dbKey = null;
|
||||
|
|
|
@ -15,9 +15,11 @@
|
|||
"_DbEncryptKey": "MyReallySecretPassword2",
|
||||
"_DbRecordsEncryptKey": "MyReallySecretPassword",
|
||||
"_DbRecordsDecryptKey": "MyReallySecretPassword",
|
||||
"__DbExpire": "Amount of time to keep various events in the database, in seconds. Below are the default values.",
|
||||
"_DbExpire": {
|
||||
"events": 1728000,
|
||||
"powerevents": 864000
|
||||
"powerevents": 864000,
|
||||
"statsevents": 2592000
|
||||
},
|
||||
"_Port": 443,
|
||||
"_AliasPort": 444,
|
||||
|
|
Loading…
Reference in New Issue