1234567891011121314151617181920212223242526272829 |
- <?php declare(strict_types=1);
- defined('InShopNC') or exit('Access Invalid!');
- define('LOCAL_DOMAIN','192.168.1.200');
- $config['searcher']['host'] = 'searcher';
- $config['searcher']['port'] = 2000;
- $config['relation']['host'] = LOCAL_DOMAIN;
- $config['relation']['port'] = 5000;
- $config['room_srv']['host'] = LOCAL_DOMAIN;
- $config['room_srv']['ports'] = [2010];
- $config['room_factory']['host'] = LOCAL_DOMAIN;
- $config['room_factory']['port'] = 2002;
- $config['room_factory']['rooms_addr'] = [
- ['host' => LOCAL_DOMAIN,'port' => '2010']
- // ['host' => '192.168.0.200','port' => '2011']
- // ['host' => '192.168.0.200','port' => '2012'],
- // ['host' => '192.168.0.200','port' => '2013'],
- // ['host' => '192.168.0.200','port' => '2014'],
- ];
- //$config['access_addr'] = 'wss://panda.lrlz.com:8080';
- $config['access_addr'] = 'ws://192.168.1.200:8080';
- $config['special_rooms'] = ['shake_bonus' => 37];
- $config['room_password'] = '5566889955668899';
|