shish il y a 6 ans
Parent
commit
48f3b3831b

+ 1 - 2
vendor/workerman/GatewayWorker/Applications/retail/start_gateway.php

@@ -47,11 +47,10 @@ $gateway->onConnect = function($connection)
     {
         // 可以在这里判断连接来源是否合法,不合法就关掉连接
         // $_SERVER['HTTP_ORIGIN']标识来自哪个站点的页面发起的websocket链接
-        if(strpos($_SERVER['HTTP_ORIGIN'], 'huaml.com') === false)
+        if(strpos($_SERVER['HTTP_ORIGIN'], 'huaml.com') === false && strpos($_SERVER['HTTP_ORIGIN'], 'huahb.com') === false)
         {
             $connection->close();
         }
-
         // onWebSocketConnect 里面$_GET $_SERVER是可用的
         // var_dump($_GET, $_SERVER);
     };