config.default.js 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* eslint valid-jsdoc: "off" */
  2. 'use strict';
  3. const { jwt } = require('./config.secret');
  4. /**
  5. * @param {Egg.EggAppInfo} appInfo app info
  6. */
  7. module.exports = appInfo => {
  8. /**
  9. * built-in config
  10. * @type {Egg.EggAppConfig}
  11. **/
  12. const config = exports = {};
  13. // use for cookie sign key, should change to your own and keep security
  14. config.keys = appInfo.name + '_1579225760252_7743';
  15. // add your middleware config here
  16. config.middleware = [];
  17. // add your user config here
  18. const userConfig = {
  19. // myAppName: 'egg',
  20. };
  21. // add your config here
  22. config.cluster = {
  23. listen: {
  24. port: 8081,
  25. },
  26. };
  27. config.mongoose = {
  28. url: 'mongodb://localhost:27017/servicetest',
  29. options: {
  30. // user: 'admin',
  31. // pass: 'admin',
  32. // authSource: 'admin',
  33. // useNewUrlParser: true,
  34. // useCreateIndex: true,
  35. },
  36. };
  37. config.jwt = {
  38. ...jwt,
  39. expiresIn: '1d',
  40. issuer: 'servicetest',
  41. };
  42. // config.amqp = {
  43. // client: {
  44. // hostname: '127.0.0.1',
  45. // username: 'visit',
  46. // password: 'visit',
  47. // vhost: 'visit',
  48. // },
  49. // app: true,
  50. // agent: true,
  51. // };
  52. return {
  53. ...config,
  54. ...userConfig,
  55. };
  56. };