cluster.js 496 B

12345678910111213141516171819202122232425262728
  1. 'use strict';
  2. /**
  3. * [exports 子进程的配置项]
  4. * @type {Object}
  5. */
  6. module.exports = {
  7. /**
  8. * [listen 监听配置]
  9. * @type {Object}
  10. */
  11. listen: {
  12. /**
  13. * [path 在服务器侦听时设置unix sock路径]
  14. * @type {String}
  15. */
  16. path: '',
  17. /**
  18. * [port 服务器侦听时设置端口]
  19. * @type {Number}
  20. */
  21. port: 8106,
  22. /**
  23. * [hostname 在服务器侦听时设置主机名绑定服务器]
  24. * @type {String}
  25. */
  26. hostname: '',
  27. },
  28. };