在Applications/chat目錄下的這幾個(gè)文件相互間都是什么關(guān)系?
Events.php 這個(gè)是主要業(yè)務(wù)所在,這個(gè)看得明白了。
start_businessworker.php
start_gateway.php
start_register.php
start_web.php
這四個(gè)文件是關(guān)系是什么呢?沒看懂。
如果布署在生產(chǎn)環(huán)境,里面的IP需要改變么?如何設(shè)置?假設(shè)我的IP是110.120.119.100。下面中的哪些需要修改?
start_web.php 中的 http:// 0.0.0.0:55151,
$web->addRoot('www.your_domain.com', __DIR__.'/Web'); 這個(gè)域名換成自己的就可以?
start_register.php 中的 text://0.0.0.0:1236
start_gateway.php 中的
$gateway = new Gateway("Websocket://0.0.0.0:7272");
$gateway->lanIp = '127.0.0.1';
$gateway->registerAddress = '127.0.0.1:1236';
start_businessworker.php
$worker->registerAddress = '127.0.0.1:1236';