start_gateway.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. // 证书最好是申请的证书
  22. // $context = array(
  23. // // 更多ssl选项请参考手册 http://php.net/manual/zh/context.ssl.php
  24. // 'ssl' => array(
  25. // // 请使用绝对路径
  26. // 'local_cert' => '/phpstudy/server/httpd/cert/www.sancent.co/public.crt', // 也可以是crt文件
  27. // 'local_pk' => '/phpstudy/server/httpd/cert/www.sancent.co/private.key',
  28. // 'verify_peer' => false,
  29. // // 'allow_self_signed' => true, //如果是自签名证书需要开启此选项
  30. // )
  31. // );
  32. // gateway 进程,这里使用Text协议,可以用telnet测试
  33. //$gateway = new Gateway("websocket://shuabeilian.alixia.net:8282",$context);
  34. $gateway = new Gateway("websocket://0.0.0.0:8282");
  35. // 开启SSL,websocket+SSL 即wss
  36. // $gateway->transport = 'ssl';
  37. // gateway名称,status方便查看
  38. $gateway->name = 'StGateway';
  39. // gateway进程数
  40. $gateway->count = 4;
  41. // 本机ip,分布式部署时使用内网ip
  42. $gateway->lanIp = '127.0.0.1';
  43. // 内部通讯起始端口,假如$gateway->count=4,起始端口为4000
  44. // 则一般会使用4000 4001 4002 4003 4个端口作为内部通讯端口
  45. $gateway->startPort = 2900;
  46. // 服务注册地址
  47. $gateway->registerAddress = '127.0.0.1:1238';
  48. // 心跳间隔
  49. $gateway->pingInterval = 5;
  50. // 心跳数据
  51. $gateway->pingData = '{"emit":"ping"}';
  52. // 当客户端连接上来时,设置连接的onWebSocketConnect,即在websocket握手时的回调
  53. $gateway->onConnect = function($connection)
  54. {
  55. $connection->maxSendBufferSize = 4*1024*1024;
  56. // $connection->onWebSocketConnect = function($connection , $http_header)
  57. // {
  58. // // 可以在这里判断连接来源是否合法,不合法就关掉连接
  59. // // $_SERVER['HTTP_ORIGIN']标识来自哪个站点的页面发起的websocket链接
  60. // if($_SERVER['HTTP_ORIGIN'] != 'http://kedou.workerman.net')
  61. // {
  62. // $connection->close();
  63. // }
  64. // // onWebSocketConnect 里面$_GET $_SERVER是可用的
  65. // // var_dump($_GET, $_SERVER);
  66. // };
  67. };
  68. // 如果不是在根目录启动,则运行runAll方法
  69. if(!defined('GLOBAL_START'))
  70. {
  71. Worker::runAll();
  72. }