r3-config/build/secure.js

41 lines
969 B
JavaScript
Raw Permalink Normal View History

2016-11-07 12:43:38 +01:00
var secure = {
2018-04-12 10:58:35 +02:00
api: {
2020-02-14 11:39:35 +01:00
port: 3002,
debugPort: 3003,
customCodePath: '/usr/share/r3-server/beta/r3-custom-code',
2020-02-14 11:52:55 +01:00
customCodeGitBranch: 'beta.r3js.org',
2018-04-12 10:58:35 +02:00
serverPassword: '"kent sent me" motherfucker!'
2017-05-09 17:27:31 +02:00
},
2018-11-18 10:36:48 +01:00
websocket: {
port: 3105,
debugPort: 3205
},
2017-05-09 17:27:31 +02:00
db : {
mongo : {
2017-05-09 17:34:22 +02:00
original : {
host: 'mongodb://127.0.0.1',
2020-02-14 11:39:35 +01:00
db: 'beta',
2017-05-09 17:34:22 +02:00
port: 27017,
shardPort: 27018,
options: {
db: {
native_parser: true
},
server: {
poolSize: 5,
keepAlive: 120
},
user: '',
pass: '',
autoIndex: false
}
}
2017-05-09 17:27:31 +02:00
}
2016-11-07 12:43:38 +01:00
}
};
if (typeof module !== 'undefined') {
module.exports = secure;
}