123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- "use strict";
- // IM数据库配置
- let imDbConfig = {
- host: '172.19.103.77',
- user: 'root',
- password: '123456',
- database: 'ichat',
- connectionLimit: '50',
- charset: 'utf8mb4'
- };
- // Redis
- let redisConfig = {
- host: '192.168.1.220',
- port: 6379,
- db: 9
- };
- // 三师后台
- let wlyyServerConfig = {
- host: '172.19.103.87',
- port: 9092
- };
- // 个推AppStore版参数
- let getTuiConfig = {
- HOST: 'https://api.getui.com/apiex.htm',
- APPID: 'qWmRh2X88l7HuE36z3qBe8',
- APPKEY: 'EzERfV8c849lBkZqHWzQG1',
- MASTERSECRET: 'veXiajQrId6iojy7Qv8kZ2'
- };
- /*let getTuiConfig = {
- HOST: 'https://api.getui.com/apiex.htm',
- APPID: 'DKgbGvbacm74nJJzen5ilA',
- APPSECRET: '4kGcL7e7kU6mbSqfEGZFW7',
- APPKEY: 'ArZfS2qvoA7N3hawOAGVC5',
- MASTERSECRET: '9lpy5vEss46tVzP1RCJiC4'
- };*/
- // 微信配置
- let wechatConfig = {
- appId: 'wxd03f859efdf0873d',
- appSecret: '2935b54b53a957d9516c920a544f2537',
- token: '27eb3bb24f149a7760cf1bb154b08040',
- baseUrl: 'weixin.xmtyw.cn/wlyy',
- template: {
- consultTemplate: 'qSOW0DBxO3qEBm4ucG0Ial0jxsOyD7_f2TFK5e-mQEc' // 咨询回复模板
- }
- };
- // 会话配置
- let sessionConfig = {
- maxMessageCount: 1000, // 会话缓存的消息数量
- maxMessageTimespan: 7 * 24 * 3600, // 会话缓存的最大时间跨度
- expireTime: 3 * 60 * 60 * 1000, // 会话过期时间,以毫秒计
- expireSessionCleanCount: 10 // 每次清理多少个过期会话
- };
- exports.app = 'IM.Server';
- exports.version = '2.0.0';
- exports.debug = true;
- exports.serverPort = 3008;
- exports.sessionExpire = 1800;
- exports.showSQL = true;
- exports.imDbConfig = imDbConfig;
- exports.redisConfig = redisConfig;
- exports.getTuiConfig = getTuiConfig;
- exports.wlyyServerConfig = wlyyServerConfig;
- exports.wechatConfig = wechatConfig;
- exports.sessionConfig = sessionConfig;
|