| 12345678910111213141516171819202122232425262728293031 |
- /**
- * 当前的网络配置
- */
- let NetConfig = {
- // 'mainAddress' :[{address:'wss://nldr-game.wxgamemini.com:8888',isShort:false}],
- //'mainAddress':[{address:'ws://134.175.177.183:8888',isShort:false},{address:'ws://193.112.185.237:8888',isShort:false}],
- 'mainAddress':[{address:'ws://192.168.10.213:8600',isShort:false}],//内网
-
- //'mainAddress':[{address:'ws://hao.xxw360.com:8600',isShort:false}],//外网
- //'AndroidMainAddress':[{address:'wss://47.92.175.96:8600',isShort:false}],
- 'AndroidMainAddress':[{address:'ws://hao.xxw360.com:8600',isShort:false}],
- 'gamelistAddress':'https://hao.xxw360.com:90/WS/MobileInterface.ashx?action=getgamelist',
- //'gamelistAddress':'https://zy.xxw360.com//game/GameHall/HotUpdate/version.json',
- // 'gameAdress':'ws://hao.xxw360.com',
- 'gameAdress':'ws://192.168.10.213:1471', //内网测试地址游戏服务器
- //'AndroidGameAdress':'wss://47.92.175.96',
- 'AndroidGameAdress':'ws://hao.xxw360.com',
-
- //'gameAddress':[{address:'ws://192.168.10.213:1471',isShort:false}],
- // 'mainAddress' :[{address:'ws://45.40.249.230:8888',isShort:false}],
- //'mainAddress' :[{address:'wss://192.168.3.182:8888',isShort:false}],
- //'mainAddress' :[{address:'ws://192.168.3.178:8888',isShort:false}],
- //'configAddress':'http://45.40.249.230:9876/public/config.txt',
- 'configAddress':'http://134.175.177.226:9876/public/config/config.txt',
- 'localConfigAddress':'config/config.json',
- 'remoteQuestionLevelAddress':'http://45.40.249.230:9876/public/question_classify.txt',
- 'localQuestionLevelAddress':'config/question_classify.json',
- };
-
- export default NetConfig;
|