| 1234567891011121314151617181920212223242526272829303132333435 |
- interface VimConfigInf {
- host: string;
- httProtocol: string;
- wsProtocol: string;
- httPort: number;
- wsPort: number;
- client: string;
- soundPath: string;
- facesPath: string;
- openUniPush: boolean;
- uploadType: string
- }
- const VimConfig: VimConfigInf = {
- //host: "10.16.4.187",
- //host: "192.168.1.118",
- //host: "br1.qihg091ew.com",
- //host: "203.175.169.43",//生产服务器
- host: "203.175.169.52",//测试服务器
- httProtocol: "http",
- wsProtocol: "ws",
- httPort: 8080,
- wsPort: 9326,
- // 客户端类型
- client: 'mobile',
- // 音频路径
- soundPath: '/static/Message.mp3',
- // 表情路径
- facesPath: '/static/faces/',
- //是否开启uniPush
- openUniPush: true,
- // 上传类型 common | minio 如果希望使用minio存储文件,请将uploadType设置为minio, common 为本地存储 (测试服务器不支持minio)
- uploadType: 'common'
- };
- export default VimConfig;
|