Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bash
bash
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
    }
};

...