1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- "use strict";
- let wlyyDbConfig = {
- host: '59.61.92.94',
- user: 'wlyy',
- password: 'jkzlehr@123',
- database: 'wlyy',
- connectionLimit: '100',
- charset : 'utf8mb4'
- };
- let imDbConfig = {
- host: '59.61.92.94',
- user: 'wlyy',
- password: 'jkzlehr@123',
- database: 'wlyy',
- connectionLimit: '100',
- charset : 'utf8mb4'
- };
- // 企业版的推送配置
- let geTuiConfig = {
- HOST: 'https://api.getui.com/apiex.htm',
- APPID: 'qWmRh2X88l7HuE36z3qBe8',
- APPKEY: 'EzERfV8c849lBkZqHWzQG1',
- MASTERSECRET: 'veXiajQrId6iojy7Qv8kZ2'
- };
- //AppStore版的推送App配置
- let geTuiAppStoreCfg = {
- HOST: 'https://api.getui.com/apiex.htm',
- APPID: 'H6FYbDejks6VjMmW3uH7V6',
- APPKEY: '0PFWlKmLBN9YzhCfFWVgYA',
- MASTERSECRET: 'pvjCGtRZJx9SRVODkxc816'
- };
- // 三师后台
- let wlyyServerConfig = {
- host: '120.41.252.108',
- port: 9660
- };
- // 透传服务
- let transServerConfig = {
- host: '120.41.253.95',
- port: 3030
- };
- // 微信配置
- let wechatConfig = {
- appId: 'wxad04e9c4c5255acf'
- , appSecret: 'ae77c48ccf1af5d07069f5153d1ac8d3'
- , token: '27eb3bb24f149a7760cf1bb154b08040'
- , baseUrl: 'www.xmtyw.cn/wlyy'
- , template: {
- // 咨询回复模板
- consultTemplate: '0mF_vHj-ILx8EH8DwzmAi7LqzjqYiU9IrSRRmziTZyc'
- }
- };
- exports.app = 'im.server';
- exports.version = '1.2.7';
- exports.debug = true;
- exports.serverPort = 3000;
- exports.sessionExpire = 1800;
- exports.showSQL = false;
- exports.wlyyDbConfig = wlyyDbConfig;
- exports.imDbConfig = imDbConfig;
- exports.geTuiConfig = geTuiConfig;
- exports.geTuiAppStoreCfg = geTuiAppStoreCfg;
- exports.wlyyServerConfig = wlyyServerConfig;
- exports.transServerConfig = transServerConfig;
|