config.default.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* eslint valid-jsdoc: "off" */
  2. 'use strict';
  3. /**
  4. * @param {Egg.EggAppInfo} appInfo app info
  5. */
  6. module.exports = appInfo => {
  7. /**
  8. * built-in config
  9. * @type {Egg.EggAppConfig}
  10. **/
  11. const config = exports = {};
  12. // use for cookie sign key, should change to your own and keep security
  13. config.keys = appInfo.name + '_1596113714154_6365';
  14. // add your middleware config here
  15. config.middleware = [];
  16. // add your user config here
  17. const userConfig = {
  18. // myAppName: 'egg',
  19. };
  20. // add your config here
  21. config.cluster = {
  22. listen: {
  23. port: 6666,
  24. },
  25. };
  26. config.io = {
  27. init: { }, // passed to engine.io
  28. namespace: {
  29. '/': {
  30. connectionMiddleware: [],
  31. packetMiddleware: [],
  32. },
  33. '/news': {
  34. connectionMiddleware: [],
  35. packetMiddleware: [],
  36. },
  37. },
  38. };
  39. // redis config
  40. config.redis = {
  41. client: {
  42. port: 6379, // Redis port
  43. host: '127.0.0.1', // Redis host
  44. password: 123456,
  45. db: 0,
  46. },
  47. };
  48. return {
  49. ...config,
  50. ...userConfig,
  51. };
  52. };