|
|
@ -38,7 +38,7 @@
|
|
|
|
{
|
|
|
|
{
|
|
|
|
name: "mongo:database",
|
|
|
|
name: "mongo:database",
|
|
|
|
description: "MongoDB database name",
|
|
|
|
description: "MongoDB database name",
|
|
|
|
'default': nconf.get('mongo:database') || 0
|
|
|
|
'default': nconf.get('mongo:database') || 'nodebb'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
];
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
@ -74,7 +74,7 @@
|
|
|
|
nconf.set('mongo:port', 27017);
|
|
|
|
nconf.set('mongo:port', 27017);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!nconf.get('mongo:database')) {
|
|
|
|
if (!nconf.get('mongo:database')) {
|
|
|
|
nconf.set('mongo:database', '0');
|
|
|
|
nconf.set('mongo:database', 'nodebb');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var hosts = nconf.get('mongo:host').split(',');
|
|
|
|
var hosts = nconf.get('mongo:host').split(',');
|
|
|
|