You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.4 KiB
74 lines
1.4 KiB
8 months ago
|
/* eslint valid-jsdoc: "off" */
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
/**
|
||
|
* @param {Egg.EggAppInfo} appInfo app info
|
||
|
*/
|
||
|
module.exports = appInfo => {
|
||
|
/**
|
||
|
* built-in config
|
||
|
* @type {Egg.EggAppConfig}
|
||
|
**/
|
||
|
const config = exports = {};
|
||
|
|
||
|
// use for cookie sign key, should change to your own and keep security
|
||
|
config.keys = appInfo.name + '_1690006251624_276';
|
||
|
|
||
|
// add your middleware config here
|
||
|
config.middleware = [];
|
||
|
|
||
|
// add your user config here
|
||
|
const userConfig = {
|
||
|
// myAppName: 'egg',
|
||
|
};
|
||
|
config.mongoose = {
|
||
|
url: "mongodb://127.0.0.1:27020/cegongji",
|
||
|
options: {
|
||
|
useUnifiedTopology: true,
|
||
|
useNewUrlParser: true,
|
||
|
}
|
||
|
};
|
||
|
|
||
|
// 加载 errorHandler 中间件
|
||
|
config.middleware = ['errorHandler'];
|
||
|
// 只对 /api 前缀的 url 路径生效
|
||
|
config.errorHandler = {
|
||
|
match: '/api',
|
||
|
};
|
||
|
//udp
|
||
|
config.udp = {
|
||
|
port: 5000
|
||
|
};
|
||
|
//跨域
|
||
|
config.security = {
|
||
|
csrf: {
|
||
|
enable: false,
|
||
|
ignoreJSON: true
|
||
|
},
|
||
|
domainWhiteList: ['http://localhost:80']
|
||
|
};
|
||
|
config.cors = {
|
||
|
origin: '*',
|
||
|
allowMethods: 'GET,HEAD,PUT,POST,DELETE,PATCH'
|
||
|
};
|
||
|
config.io = {
|
||
|
init: {},
|
||
|
namespace: {
|
||
|
// 命名空间
|
||
|
'/message/': {
|
||
|
connectionMiddleware: [],
|
||
|
packetMiddleware: []
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
config.jwt = {
|
||
|
secret: 'xby123456', //自定义token的加密条件字符串,可按各自的需求填写
|
||
|
};
|
||
|
|
||
|
return {
|
||
|
...config,
|
||
|
...userConfig,
|
||
|
};
|
||
|
};
|