config.sids.php 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. /**
  3. * 所有平台SID配置表
  4. */
  5. $config = array();
  6. $config['adminIpList'] =[
  7. '47.90.250.184',
  8. '127.0.0.1',
  9. '183.15.179.56',
  10. '120.78.8.90',
  11. '172.17.0.1',
  12. '47.253.10.24',
  13. '172.22.107.71',
  14. '192.168.1.50',
  15. '8.135.40.225',
  16. '47.106.199.247',
  17. '10.0.5.150', #测试环境 内网ip
  18. '47.112.116.21',//数值公网
  19. '10.0.25.49',//数值公网
  20. '39.108.231.97',//cc测试公网
  21. '10.0.39.151',//cc 测试内网
  22. '47.90.253.101',//cc正式公网
  23. '172.22.107.253',//cc正式内网
  24. ];
  25. $config['sidlist'] = array(
  26. 1 => 'crazyGod_tl', //android
  27. 2 => 'crazyGod_tl', //ios
  28. );
  29. $config['lang'] = array(//多语言
  30. 1 => 'tl',
  31. 2 => 'tl',
  32. 3 => 'zh',
  33. 4 => 'zh',
  34. );
  35. $config['device'] = array( // sid =>1(安卓) 2(IOS)
  36. 1 => 1,
  37. 2 => 2,
  38. 3 => 1,
  39. 4 => 2,
  40. 5 => 1,
  41. 6 => 2,
  42. 7 => 1,
  43. 8 => 2,
  44. 9 => 1,
  45. 10 => 2,
  46. 11 => 1,
  47. 12 => 2,
  48. 13 => 1,
  49. 14 => 2,
  50. 15 => 1,
  51. 17 => 1,
  52. 19 => 1,
  53. 20 => 2,
  54. 21 => 1,
  55. 22 => 2,
  56. 23 => 1,
  57. 24 => 2,
  58. );
  59. $config['packageName'] = [
  60. 1 => 'com.superant.crazygod', //android
  61. 2 => 'com.superant.crazygod', //ios
  62. 3 => 'com.mini.gametexas', //繁体 安卓
  63. 4 => 'com.superant.superpoker.hk', //繁体 苹果
  64. 5 => 'com.mini.gametexas', //英语 安卓
  65. 6 => 'com.superant.superpoker.hk', //英语 苹果
  66. 7 => 'com.mini.gametexas', //奥马哈 安卓
  67. 8 => 'com.superant.superpoker.hk', //奥马哈 苹果
  68. 9 => 'com.mini.gametexas', //安卓 主包
  69. 10 => 'com.superant.superpoker.hk', //苹果 主包
  70. 11 => 'com.mini.gametexas', //印度 安卓
  71. 12 => 'com.superant.superpoker.hk', //印度 苹果
  72. 13 => 'com.mini.gametexas', //越南 安卓
  73. 14 => 'com.superant.superpoker.hk', //越南 苹果
  74. 15 => 'com.superant.superpoker.hw', //华为 安卓
  75. 17 => 'com.superant.superpoker.en.kaopu', //靠谱 安卓
  76. 19 => 'com.mini.gametexas', //俄语 安卓
  77. 20 => 'com.superant.superpoker.hk', //俄语 苹果
  78. 21 => 'com.superant.superpoker.os', //安卓 海外
  79. 22 => 'com.superant.superpoker.os', //苹果 海外
  80. 23 => 'com.mini.gametexas',
  81. 24 => 'com.mini.gametexas',
  82. ];
  83. $config['lidlist'] = array(1,2,3,4,5,6, 7);//1facebook,2游客 3LINE 4华为 5靠谱 6俄语VK 7华为海外
  84. //安卓和Ios的sid列表
  85. $config['androidSidList'] = [1,3,5,7,9,11,13,15,17,19,21,23];
  86. $config['iosSidList'] = [2,4,6,8,10,12,14,20,22,24];
  87. return $config;