r3-config/build/secure.js

40 lines
914 B
JavaScript

var secure = {
api: {
port: 3104,
debugPort: 3204,
customCodePath: '/usr/share/fs/beta/r3-custom-code',
serverPassword: '"kent sent me" motherfucker!'
},
websocket: {
port: 3105,
debugPort: 3205
},
db : {
mongo : {
original : {
host: 'mongodb://127.0.0.1',
db: 'fs',
port: 27017,
shardPort: 27018,
options: {
db: {
native_parser: true
},
server: {
poolSize: 5,
keepAlive: 120
},
user: '',
pass: '',
autoIndex: false
}
}
}
}
};
if (typeof module !== 'undefined') {
module.exports = secure;
}