r3-config/config.js

57 lines
1.3 KiB
JavaScript

var config = {
vr_pong: {
url: "http://pong.cybafelo.local",
port: 3101,
debugPort: 3201
},
vr_racer: {
url: "http://racer.cybafelo.local",
port: 3102,
debugPort: 3202
},
editor: {
url: "http://3d-editor.cybafelo.local",
port: 3103,
debugPort: 3203,
cluster: false
},
api16: {
url: "http://api.cybafelo.local",
port: 3104,
debugPort: 3204,
cluster: false,
cors: false,
mailer: {
host: 'localhost',
port: 9025,
secure: false,
debug: true,
ignoreTLS: true
},
mongodb: {
host: 'mongodb://127.0.0.1',
db: 'gamewheel',
port: 27017,
shardPort: 27018,
options: {
db: {
native_parser: true
},
server: {
poolSize: 5,
keepAlive: 120
},
user: '',
pass: '',
autoIndex: false
}
},
sessionKey: 'iJswK29klj20Jos02mJK8ud9239j23'
}
};
if (typeof module !== 'undefined') {
module.exports = config;
}