mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-03 14:20:33 +01:00
21 lines
331 B
JavaScript
21 lines
331 B
JavaScript
var config = {
|
|
"secret": 'nodebb-secret',
|
|
"base_url": "http://localhost",
|
|
"port": 4567,
|
|
"mailer": {
|
|
host: 'localhost',
|
|
port: '25',
|
|
from: 'mailer@localhost.lan'
|
|
},
|
|
"redis": {
|
|
port: "6379",
|
|
host: "127.0.0.1",
|
|
options: {
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
config.url = config.base_url + ':' + config.port + '/';
|
|
|
|
module.exports = config; |