start_gateway.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. /**
  3. * This file is part of workerman.
  4. *
  5. * Licensed under The MIT License
  6. * For full copyright and license information, please see the MIT-LICENSE.txt
  7. * Redistributions of files must retain the above copyright notice.
  8. *
  9. * @author walkor<walkor@workerman.net>
  10. * @copyright walkor<walkor@workerman.net>
  11. * @link http://www.workerman.net/
  12. * @license http://www.opensource.org/licenses/mit-license.php MIT License
  13. */
  14. require_once __DIR__.'/../../vendor/workerman/gateway-worker/src/BusinessWorker.php';
  15. require_once __DIR__.'/../../vendor/workerman/gateway-worker/src/Gateway.php';
  16. require_once __DIR__.'/../../vendor/workerman/workerman/Worker.php';
  17. require_once __DIR__.'/../../vendor/workerman/workerman/Autoloader.php';
  18. use \Workerman\Worker;
  19. use \GatewayWorker\Gateway;
  20. use \Workerman\Autoloader;
  21. require_once __DIR__ . '/../../vendor/autoload.php';
  22. // gateway 进程
  23. $gateway = new Gateway("tcp://0.0.0.0:2346");
  24. // 设置名称,方便status时查看
  25. $gateway->name = 'ChatGateway';
  26. // 设置进程数,gateway进程数建议与cpu核数相同
  27. $gateway->count = 4;
  28. // 分布式部署时请设置成内网ip(非127.0.0.1)
  29. $gateway->lanIp = '127.0.0.1';
  30. // 内部通讯起始端口。假如$gateway->count=4,起始端口为2300
  31. // 则一般会使用2300 2301 2302 2303 4个端口作为内部通讯端口
  32. $gateway->startPort = 2347;
  33. // 心跳间隔
  34. $gateway->pingInterval = 10;
  35. // 心跳数据
  36. $gateway->pingData = '{"type":"ping"}';
  37. // 服务注册地址
  38. $gateway->registerAddress = '127.0.0.1:2345';
  39. /*
  40. // 当客户端连接上来时,设置连接的onWebSocketConnect,即在websocket握手时的回调
  41. $gateway->onConnect = function($connection)
  42. {
  43. $connection->onWebSocketConnect = function($connection , $http_header)
  44. {
  45. // 可以在这里判断连接来源是否合法,不合法就关掉连接
  46. // $_SERVER['HTTP_ORIGIN']标识来自哪个站点的页面发起的websocket链接
  47. if($_SERVER['HTTP_ORIGIN'] != 'http://chat.workerman.net')
  48. {
  49. $connection->close();
  50. }
  51. // onWebSocketConnect 里面$_GET $_SERVER是可用的
  52. // var_dump($_GET, $_SERVER);
  53. };
  54. };
  55. */
  56. // 如果不是在根目录启动,则运行runAll方法
  57. if(!defined('GLOBAL_START'))
  58. {
  59. Worker::runAll();
  60. }