start_gateway.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. use \Workerman\Worker;
  15. use \Workerman\WebServer;
  16. use \GatewayWorker\Gateway;
  17. use \GatewayWorker\BusinessWorker;
  18. use \Workerman\Autoloader;
  19. // 自动加载类
  20. require_once __DIR__ . '/../../vendor/autoload.php';
  21. $context = array(
  22. 'ssl' => array(
  23. 'local_cert' => '/www/server/panel/vhost/cert/dskms.csdeshang.com/fullchain.pem', // 或者crt文件
  24. 'local_pk' => '/www/server/panel/vhost/cert/dskms.csdeshang.com/privkey.pem',
  25. 'verify_peer' => false
  26. )
  27. );
  28. // gateway 进程,这里使用Text协议,可以用telnet测试
  29. $gateway = new Gateway("websocket://0.0.0.0:8881",$context);
  30. $gateway->pingInterval = 55;
  31. $gateway->pingNotResponseLimit = 1;
  32. $gateway->pingData = '';
  33. // 开启SSL,websocket+SSL 即wss
  34. $gateway->transport = 'ssl';
  35. // gateway名称,status方便查看
  36. $gateway->name = 'YourAppGateway';
  37. // gateway进程数
  38. $gateway->count = 4;
  39. // 本机ip,分布式部署时使用内网ip
  40. $gateway->lanIp = '127.0.0.1';
  41. // 内部通讯起始端口,假如$gateway->count=4,起始端口为4000
  42. // 则一般会使用4000 4001 4002 4003 4个端口作为内部通讯端口
  43. $gateway->startPort = 6000;
  44. // 服务注册地址
  45. $gateway->registerAddress = '127.0.0.1:1888';
  46. // 心跳间隔
  47. //$gateway->pingInterval = 10;
  48. // 心跳数据
  49. //$gateway->pingData = '{"type":"ping"}';
  50. /*
  51. // 当客户端连接上来时,设置连接的onWebSocketConnect,即在websocket握手时的回调
  52. $gateway->onConnect = function($connection)
  53. {
  54. $connection->onWebSocketConnect = function($connection , $http_header)
  55. {
  56. // 可以在这里判断连接来源是否合法,不合法就关掉连接
  57. // $_SERVER['HTTP_ORIGIN']标识来自哪个站点的页面发起的websocket链接
  58. if($_SERVER['HTTP_ORIGIN'] != 'http://kedou.workerman.net')
  59. {
  60. $connection->close();
  61. }
  62. // onWebSocketConnect 里面$_GET $_SERVER是可用的
  63. // var_dump($_GET, $_SERVER);
  64. };
  65. };
  66. */
  67. // 如果不是在根目录启动,则运行runAll方法
  68. if(!defined('GLOBAL_START'))
  69. {
  70. Worker::runAll();
  71. }