This commit is contained in:
hippoz 2021-03-04 21:32:29 +02:00
parent 1c1b710cde
commit 839b387273
Signed by untrusted user who does not match committer: hippoz
GPG key ID: 7C52899193467641

View file

@ -8,10 +8,7 @@ module.exports = {
// specialCode: ''
// }
//},
corsAllowList: [ "http://localhost:3000", "http://localhost:3005" ],
mongoUrl: "mongodb://192.168.0.105:27017/app",
// Internal stuff - only touch if you know what you're doing
mongoUrl: "mongodb://localhost:27017/app",
bcryptRounds: 10,
roleMap: {
"BANNED": 0,
@ -20,6 +17,14 @@ module.exports = {
"BOT": 3,
"ADMIN": 4
},
gatewayStillNotConnectedTimeoutMS: 15*1000,
gatewayMaxStringPayloadLength:
gatewayStillNotConnectedTimeoutMS: 15*1000
};
module.exports.corsAllowList = [
// Allow the normal web interface
`http://${module.exports.address}:${module.exports.ports.mainServerPort}`,
`https://${module.exports.address}:${module.exports.ports.mainServerPort}`,
// Allow brainet-react
`http://${module.exports.address}:3000`,
`https://${module.exports.address}:3000`
];