...
| Code Block | ||||
|---|---|---|---|---|
| ||||
module.exports = {
port: 3000,
chat_server_key: "your-chat-server-key",
secure: falsetrue, // use ssl ?
privateKey: "./private_key.key", // path to private key ?
cert: "./cert.crt", // path to cert key ?
redis: {
host: '127.0.0.1',
port: 6379
}
};
|
...