mpp-server-dev2/config.js

29 lines
683 B
JavaScript
Raw Normal View History

2020-04-07 09:55:16 +02:00
module.exports = Object.seal({
2021-04-13 23:37:11 +02:00
port: 8443,
motd: "humongous clement",
2021-03-20 20:12:38 +01:00
_id_PrivateKey: process.env.SALT,
2022-06-15 08:21:50 +02:00
// defaultLobbyColor: "#19b4b9",
2021-04-12 18:37:19 +02:00
// defaultLobbyColor2: "#801014",
2022-06-15 08:21:50 +02:00
defaultLobbyColor: "#76b0db",
2022-06-11 05:06:50 +02:00
defaultLobbyColor2: "#276491",
// defaultLobbyColor: "#9900ff",
// defaultLobbyColor2: "#5900af",
2022-06-15 08:21:50 +02:00
defaultUsername: "Anonymous",
2021-04-12 18:41:44 +02:00
adminpass: process.env.ADMINPASS,
2021-05-09 22:34:22 +02:00
ssl: process.env.SSL,
2022-05-29 04:43:49 +02:00
serveFiles: true,
2021-04-13 04:08:29 +02:00
defaultRoomSettings: {
2022-06-15 08:21:50 +02:00
// color: "#3b5054",
// color2: "#001014",
color: "#480505",
2021-04-13 04:08:29 +02:00
crownsolo: false,
visible: true
2022-06-15 08:21:50 +02:00
},
2022-07-04 00:39:53 +02:00
hostDevFiles: true,
enableMPPCloneBot: false
2021-04-02 20:02:04 +02:00
});