mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-06 23:52:58 +01:00
20 lines
303 B
JavaScript
20 lines
303 B
JavaScript
var config = {
|
|
"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; |