NetConfig.js 1.7 KB

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * 当前的网络配置
  3. */
  4. let NetConfig = {
  5. // 'mainAddress' :[{address:'wss://nldr-game.wxgamemini.com:8888',isShort:false}],
  6. //'mainAddress':[{address:'ws://134.175.177.183:8888',isShort:false},{address:'ws://193.112.185.237:8888',isShort:false}],
  7. 'mainAddress':[{address:'ws://192.168.10.213:8600',isShort:false}],//内网
  8. //'mainAddress':[{address:'ws://hao.xxw360.com:8600',isShort:false}],//外网
  9. //'AndroidMainAddress':[{address:'wss://47.92.175.96:8600',isShort:false}],
  10. 'AndroidMainAddress':[{address:'ws://hao.xxw360.com:8600',isShort:false}],
  11. 'gamelistAddress':'https://hao.xxw360.com:90/WS/MobileInterface.ashx?action=getgamelist',
  12. //'gamelistAddress':'https://zy.xxw360.com//game/GameHall/HotUpdate/version.json',
  13. // 'gameAdress':'ws://hao.xxw360.com',
  14. 'gameAdress':'ws://192.168.10.213:1471', //内网测试地址游戏服务器
  15. //'AndroidGameAdress':'wss://47.92.175.96',
  16. 'AndroidGameAdress':'ws://hao.xxw360.com',
  17. //'gameAddress':[{address:'ws://192.168.10.213:1471',isShort:false}],
  18. // 'mainAddress' :[{address:'ws://45.40.249.230:8888',isShort:false}],
  19. //'mainAddress' :[{address:'wss://192.168.3.182:8888',isShort:false}],
  20. //'mainAddress' :[{address:'ws://192.168.3.178:8888',isShort:false}],
  21. //'configAddress':'http://45.40.249.230:9876/public/config.txt',
  22. 'configAddress':'http://134.175.177.226:9876/public/config/config.txt',
  23. 'localConfigAddress':'config/config.json',
  24. 'remoteQuestionLevelAddress':'http://45.40.249.230:9876/public/question_classify.txt',
  25. 'localQuestionLevelAddress':'config/question_classify.json',
  26. };
  27. export default NetConfig;