r3-config/config.js

56 lines
1.2 KiB
JavaScript
Raw Normal View History

2016-09-22 16:29:22 +02:00
var config = {
2016-09-27 11:05:32 +02:00
vr_pong: {
url: "http://pong",
2016-09-26 16:15:21 +02:00
port: 3101,
debugPort: 3201
2016-09-22 16:29:22 +02:00
},
2016-09-27 11:05:32 +02:00
vr_racer: {
url: "http://racer",
2016-09-22 16:29:22 +02:00
port: 3102,
2016-09-26 16:15:21 +02:00
debugPort: 3202
2016-09-22 16:29:22 +02:00
},
2016-09-27 11:05:32 +02:00
editor: {
url: "http://3d-editor.gamewheel.com",
2016-09-22 16:29:22 +02:00
port: 3103,
2016-09-26 16:15:21 +02:00
debugPort: 3203,
2016-09-22 16:29:22 +02:00
cluster: false
2016-09-26 16:15:21 +02:00
},
2016-09-27 11:05:32 +02:00
api16: {
url: "http://api16.gamewheel.com",
2016-09-26 16:15:21 +02:00
port: 3104,
2016-09-27 11:05:32 +02:00
debugPort: 3204,
mailer: {
host: 'localhost',
port: 9025,
secure: false,
debug: true,
ignoreTLS: true
},
mongodb: {
host: 'mongodb://127.0.0.1',
db: 'gamewheel',
options: {
db: {
native_parser: true
},
server: {
poolSize: 5,
keepAlive: 120
},
user: '',
pass: '',
autoIndex: false
}
},
server: {
cluster: false
},
sessionKey: 'iJswK29klj20Jos02mJK8ud9239j23'
2016-09-22 16:29:22 +02:00
}
2016-04-26 18:10:25 +02:00
};
2016-04-26 18:52:58 +02:00
if (typeof module !== 'undefined') {
2016-09-22 16:29:22 +02:00
module.exports = config;
2016-04-26 18:52:58 +02:00
}